Initial Commit ...

This commit is contained in:
2026-04-17 17:04:44 +03:30
commit a986295e19
842 changed files with 97431 additions and 0 deletions
@@ -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,
};