mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
17 lines
389 B
C#
17 lines
389 B
C#
namespace Application.DataTransferObjects.ApiKey;
|
|
|
|
public class ApiKeyDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid AllianceId { get; set; }
|
|
|
|
public required string Key { get; set; }
|
|
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
public required string CreatedBy { get; set; }
|
|
|
|
public DateTime? ModifiedOn { get; set; }
|
|
|
|
public string? ModifiedBy { get; set; }
|
|
} |