mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
30 lines
661 B
C#
30 lines
661 B
C#
using System.Runtime.InteropServices.JavaScript;
|
|
|
|
namespace Application.DataTransferObjects.Player;
|
|
|
|
public class PlayerDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid RankId { get; set; }
|
|
|
|
public Guid AllianceId { get; set; }
|
|
|
|
public required string PlayerName { get; set; }
|
|
|
|
public int Level { get; set; }
|
|
|
|
public required string RankName { get; set; }
|
|
|
|
public int NotesCount { get; set; }
|
|
|
|
public int AdmonitionsCount { get; set; }
|
|
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
public required string CreatedBy { get; set; }
|
|
|
|
public DateTime? ModifiedOn { get; set; }
|
|
|
|
public string? ModifiedBy { get; set; }
|
|
} |