Initial Commit ...
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import { XBaseDto } from 'x-framework-core';
|
||||
import { XPersonDto, XWebinarType } from 'x-mabsut-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,
|
||||
};
|
||||
Reference in New Issue
Block a user