update interfaces

This commit is contained in:
Collin Barrett 2018-09-03 16:02:40 -05:00
parent e0f9ada433
commit 3242aa6076

View file

@ -197,11 +197,16 @@ export class Home extends React.Component<RouteComponentProps<{}>, IHomeState> {
}
}
interface ISoftwareDto {
id: number;
name: string;
}
interface IListDto {
id: number;
name: string;
languages: IListLanguageDto[];
software: string[];
softwareIds: number[];
tags: IListTagDto[];
updatedDate: string;
}