1
0

Generated

This commit is contained in:
Michael Hierweck
2019-04-18 16:31:39 +02:00
parent c6be30895e
commit fa0ba61de3
171 changed files with 15676 additions and 0 deletions

View File

@ -0,0 +1,29 @@
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;
documentDate?: Moment;
memberFrom?: Moment;
memberUntil?: Moment;
remark?: string;
shares?: IShare[];
assets?: IAsset[];
customerPrefix?: string;
customerId?: number;
}
export class Membership implements IMembership {
constructor(
public id?: number,
public documentDate?: Moment,
public memberFrom?: Moment,
public memberUntil?: Moment,
public remark?: string,
public shares?: IShare[],
public assets?: IAsset[],
public customerPrefix?: string,
public customerId?: number
) {}
}