resolve some static analysis warnings

This commit is contained in:
Collin M. Barrett 2019-06-26 18:56:33 -05:00
parent 4497cab46b
commit fcb7931d80
2 changed files with 5 additions and 3 deletions

View file

@ -1,8 +1,10 @@
namespace FilterLists.Agent
using System;
namespace FilterLists.Agent
{
public class FilterList
{
public int Id { get; private set; }
public string ViewUrl { get; private set; }
public Uri ViewUrl { get; private set; }
}
}

View file

@ -8,7 +8,7 @@
namespace FilterLists.Agent.ListArchiver
{
public class CaptureAllLists
public static class CaptureAllLists
{
public class Command : IRequest
{