From 3242aa6076700361c30361639745b708dd81d3ff Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Mon, 3 Sep 2018 16:02:40 -0500 Subject: [PATCH] update interfaces --- src/FilterLists.Web/ClientApp/components/Home.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index a17e3f2cd..4b5b58a21 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -197,11 +197,16 @@ export class Home extends React.Component, IHomeState> { } } +interface ISoftwareDto { + id: number; + name: string; +} + interface IListDto { id: number; name: string; languages: IListLanguageDto[]; - software: string[]; + softwareIds: number[]; tags: IListTagDto[]; updatedDate: string; }