t00-multiuser/server/entities/Badge.ts

25 lines
635 B
TypeScript
Raw Normal View History

2024-09-26 10:31:24 +01:00
export default class Badge {
public Id: number;
public Name: string;
public Description: string;
public ImageUrl: string;
public ForUrl: string;
public CreatedByUserId: number;
public CreatedDatetime: Date;
public LastModifiedByUserId?: number;
public LastModifiedDatetime?: Date;
public DeletedByUserId?: number;
public DeletedDatetime?: Date;
public IsDeleted: boolean;
public constructor() {
this.Id = Number.MIN_VALUE;
this.Name = "";
this.Description = "";
this.ImageUrl = "";
this.ForUrl = "";
this.CreatedByUserId = Number.MIN_VALUE;
this.CreatedDatetime = new Date(0);
this.IsDeleted = false;
}
}