API lists endpoint updates

This commit is contained in:
Collin M. Barrett 2018-02-17 09:13:15 -06:00
parent d2da31d860
commit 36b6c80c19
2 changed files with 12 additions and 3 deletions

View file

@ -1,11 +1,21 @@
namespace FilterLists.Services.FilterListService
using System;
namespace FilterLists.Services.FilterListService
{
public class FilterListDetailsDto
{
public int Id { get; set; }
public string Description { get; set; }
public string DescriptionSourceUrl { get; set; }
public DateTime? DiscontinuedDate { get; set; }
public string DonateUrl { get; set; }
public string EmailAddress { get; set; }
public string ForumUrl { get; set; }
public string HomeUrl { get; set; }
public string IssuesUrl { get; set; }
public string Name { get; set; }
public string PolicyUrl { get; set; }
public DateTime? PublishedDate { get; set; }
public string SubmissionUrl { get; set; }
public string ViewUrl { get; set; }
}
}

View file

@ -3,7 +3,6 @@
public class FilterListSummaryDto
{
public int Id { get; set; }
public string Description { get; set; }
public string Name { get; set; }
public string ViewUrl { get; set; }
}