Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

24 lines
573 B
C#

namespace Database.Entities;
public class MarshalGuard : BaseEntity
{
public Guid AllianceId { get; set; }
public Alliance Alliance { get; set; } = null!;
public DateTime EventDate { get; set; }
public required string CreatedBy { get; set; }
public DateTime? ModifiedOn { get; set; }
public string? ModifiedBy { get; set; }
public int Level { get; set; }
public int RewardPhase { get; set; }
public int AllianceSize { get; set; }
public ICollection<MarshalGuardParticipant> MarshalGuardParticipants { get; set; } = [];
}