add soft id to details endpoint

ref #429
This commit is contained in:
Collin M. Barrett 2018-09-15 22:06:30 -05:00
parent 3d15d63743
commit 06f8f1f8b7
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@ namespace FilterLists.Services.FilterList.Models
public class SyntaxSupportedSoftwareDto
{
public string HomeUrl { get; set; }
public uint Id { get; set; }
public string Name { get; set; }
}
}

View file

@ -57,5 +57,6 @@ export interface IMaintainerAdditionalListDto {
export interface ISyntaxSupportedSoftwareDto {
homeUrl: string;
id: number;
name: string;
}