1
0
Files
hs.hsadmin.ng/src/main/webapp/app/shared/model/membership.model.ts
Michael Hierweck 7f0dfebaa4 Model customers.
2019-04-18 09:33:55 +02:00

28 lines
692 B
TypeScript

import { Moment } from 'moment';
import { IShare } from 'app/shared/model/share.model';
import { IAsset } from 'app/shared/model/asset.model';
export interface IMembership {
id?: number;
from?: Moment;
to?: Moment;
comment?: string;
shares?: IShare[];
assets?: IAsset[];
customerPrefix?: string;
customerId?: number;
}
export class Membership implements IMembership {
constructor(
public id?: number,
public from?: Moment,
public to?: Moment,
public comment?: string,
public shares?: IShare[],
public assets?: IAsset[],
public customerPrefix?: string,
public customerId?: number
) {}
}