mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
add License to list details API endpoint
This commit is contained in:
parent
ceada079b5
commit
7e55fea81c
1 changed files with 7 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ public class ListDetailsDto
|
|||
public string HomeUrl { get; set; }
|
||||
public string IssuesUrl { get; set; }
|
||||
public IEnumerable<string> Languages { get; set; }
|
||||
public ListLicenseDto License { get; set; }
|
||||
public IEnumerable<ListMaintainerDto> Maintainers { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PolicyUrl { get; set; }
|
||||
|
|
@ -38,4 +39,10 @@ public class MaintainerAdditionalListsDto
|
|||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
|
||||
public class ListLicenseDto
|
||||
{
|
||||
public string DescriptionUrl { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue