mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
12 lines
256 B
C#
12 lines
256 B
C#
namespace Application.DataTransferObjects.Alliance;
|
|
|
|
public class AllianceDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public int Server { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public required string Abbreviation { get; set; }
|
|
} |