mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
update interfaces
This commit is contained in:
parent
e0f9ada433
commit
3242aa6076
1 changed files with 6 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue