export default class Domain { public Id: number = Number.MIN_VALUE; public UserId: number = Number.MIN_VALUE; public HasHttps: boolean = false; public Domain: string = ""; public Active: boolean = false; public CreatedByUserId = Number.MIN_VALUE; public CreatedDatetime = new Date(0); public LastModifiedByUserId?: number; public LastModifiedDatetime?: Date; public DeletedByUserId?: number; public DeletedDatetime?: Date; public IsDeleted: boolean = false; }