export interface MembershipViewModel {
id: number;
start: Date;
end?: Date;
terminationReason?: string;
status: string;
statusId: number;
}