it0/packages/services/version-service/src/application/dtos/update-version.dto.ts

11 lines
227 B
TypeScript

export class UpdateVersionDto {
versionName?: string;
buildNumber?: string;
changelog?: string;
downloadUrl?: string;
isForceUpdate?: boolean;
isEnabled?: boolean;
minOsVersion?: string;
releaseDate?: string;
}