diff --git a/src/FilterLists.Services/FilterList/Models/SyntaxSupportedSoftwareDto.cs b/src/FilterLists.Services/FilterList/Models/SyntaxSupportedSoftwareDto.cs index 400e6288d..8820cfa75 100644 --- a/src/FilterLists.Services/FilterList/Models/SyntaxSupportedSoftwareDto.cs +++ b/src/FilterLists.Services/FilterList/Models/SyntaxSupportedSoftwareDto.cs @@ -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; } } } \ No newline at end of file diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IFilterListDetailsDto.ts b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IFilterListDetailsDto.ts index e3afa5d43..1f41ce79b 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IFilterListDetailsDto.ts +++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IFilterListDetailsDto.ts @@ -57,5 +57,6 @@ export interface IMaintainerAdditionalListDto { export interface ISyntaxSupportedSoftwareDto { homeUrl: string; + id: number; name: string; } \ No newline at end of file