From 06f8f1f8b705dc9b2bb84eb0b26291eb325c39e2 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 15 Sep 2018 22:06:30 -0500 Subject: [PATCH] add soft id to details endpoint ref #429 --- .../FilterList/Models/SyntaxSupportedSoftwareDto.cs | 1 + .../home/components/detailsExpander/IFilterListDetailsDto.ts | 1 + 2 files changed, 2 insertions(+) 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