t00-multiuser/server/entities/Badge.ts

29 lines
727 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;
2024-10-13 14:24:34 +01:00
public Hint: string;
2024-09-26 10:31:24 +01:00
public ImageUrl: string;
public ForUrl: string;
2024-10-08 11:04:46 +01:00
public IsSecret: boolean;
2024-09-26 10:31:24 +01:00
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 = "";
2024-10-13 14:24:34 +01:00
this.Hint = "";
2024-09-26 10:31:24 +01:00
this.ImageUrl = "";
this.ForUrl = "";
2024-10-08 11:04:46 +01:00
this.IsSecret = false;
2024-09-26 10:31:24 +01:00
this.CreatedByUserId = Number.MIN_VALUE;
this.CreatedDatetime = new Date(0);
this.IsDeleted = false;
}
}