Files
xSaherElmClient/src/app/views/webinar/v-webinar.typings.ts
T

27 lines
554 B
TypeScript

import { XBaseDto } from 'x-framework-core';
import { XPersonDto, XWebinarType } from 'x-saherelm-api-sdk';
export interface VWebinarViewDto extends XBaseDto {
id: string;
title: string;
ownerId: string;
createdOn: Date;
enabled: boolean;
language: string;
type: XWebinarType;
owner?: XPersonDto;
description: string;
}
export const defaultVWebinarViewDto: VWebinarViewDto = {
id: '',
title: '',
ownerId: '',
language: '',
enabled: false,
description: '',
type: undefined,
owner: undefined,
createdOn: undefined,
};