Files
FarmMapsLib/projects/common/src/fm/models/package.ts
Willem Dantuma 713af307cd
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Add fmPackageExists directive
2022-03-16 14:20:28 +01:00

17 lines
267 B
TypeScript

export interface IPackage {
id:string
name:string;
enabled?:boolean;
dataDate?:Date;
dataEndDate?:Date;
}
export interface IPackages {
[id: string]: IPackage[];
}
export interface IPackageMap {
[id: string]: IPackage;
}