mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
29 lines
594 B
C#
29 lines
594 B
C#
using Database.Entities;
|
|
|
|
namespace Application.DataTransferObjects.VsDuel;
|
|
|
|
public class VsDuelDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid AllianceId { get; set; }
|
|
|
|
public DateTime EventDate { get; set; }
|
|
|
|
public required string CreatedBy { get; set; }
|
|
|
|
public bool Won { get; set; }
|
|
|
|
public required string OpponentName { get; set; }
|
|
|
|
public int OpponentServer { get; set; }
|
|
|
|
public long OpponentPower { get; set; }
|
|
|
|
public int OpponentSize { get; set; }
|
|
|
|
public DateTime? ModifiedOn { get; set; }
|
|
|
|
public string? ModifiedBy { get; set; }
|
|
|
|
} |