25 lines
501 B
TypeScript
25 lines
501 B
TypeScript
import type { Group } from './group';
|
|
import type { Responsible } from './responsible';
|
|
|
|
export interface Member {
|
|
id: number;
|
|
memberId?: number;
|
|
responsibleId?: number | undefined;
|
|
firstName: string;
|
|
lastName: string;
|
|
birthday?: string;
|
|
age?: string;
|
|
comment?: string;
|
|
address?: string;
|
|
town?: string;
|
|
zip?: string;
|
|
phone?: string;
|
|
email?: string;
|
|
group?: Group;
|
|
responsible?: Responsible;
|
|
firstVisit?: string;
|
|
lastVisit?: string;
|
|
}
|
|
|
|
export type Members = Member[];
|