using SharedProject.Enums; namespace GameDatabase.Entities; public partial class ChallengeCompeteDatum { public uint CompId { get; set; } public CompeteModeType CompeteMode { get; set; } = CompeteModeType.None; public uint Baid { get; set; } public string CompeteName { get; set; } = String.Empty; public string CompeteDescribe { get; set; } = String.Empty; public uint MaxParticipant { get; set; } = 2; public DateTime CreateTime { get; set; } public DateTime ExpireTime { get; set; } public uint RequireTitle { get; set; } = 0; public ShareType Share { get; set; } = ShareType.EveryOne; public CompeteTargetType CompeteTarget { get; set; } = CompeteTargetType.EveryOne; public List Songs { get; set; } = new(); public List Participants { get; set; } = new(); }