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

26 lines
584 B
C#

namespace Application.DataTransferObjects.DesertStorm;
public class DesertStormDto
{
public Guid Id { get; set; }
public bool Won { get; set; }
public int OpposingParticipants { get; set; }
public int OpponentServer { get; set; }
public DateTime EventDate { get; set; }
public required string OpponentName { get; set; }
public Guid AllianceId { get; set; }
public string? ModifiedBy { get; set; }
public DateTime? ModifiedOn { get; set; }
public required string CreatedBy { get; set; }
public int Participants { get; set; }
}