EUS/entities/Domain.ts

20 lines
No EOL
613 B
TypeScript

export default class Domain {
public Id: number = Number.MIN_VALUE;
public UserId: number = Number.MIN_VALUE;
public HasHttps: boolean = false;
public get HasHttpsString() {
return this.HasHttps ? "Yes" : "No";
}
public Domain: string = "";
public Active: boolean = false;
public get ActiveString() {
return this.Active ? "Yes" : "No";
}
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;
}