cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
25 lines (24 loc) • 799 B
TypeScript
declare class IAppVersionMst {
_id?: string;
appver_reg_id_appreg?: string;
appver_version_number?: string;
appver_version_code?: number;
appver_release_type_id_sygms?: string;
appver_is_active?: boolean;
appver_is_forced?: boolean;
appver_min_supported_version?: string;
appver_release_date?: Date;
appver_release_notes?: string;
appver_build_number?: string;
appver_bundle_size?: number;
appver_bundle_file_id_cyfm?: string;
appver_bundle_hash?: string;
appver_bundle_signature?: string;
appver_deployment_status_id_sygms?: string;
appver_deployed_by_id_auth?: string;
appver_deployed_at?: Date;
appver_created_by_id_auth?: string;
appver_created_at?: Date;
appver_updated_at?: Date;
}
export { IAppVersionMst };