Tomasi - Developing bafe2cde5a v 0.7.0
2025-02-06 10:44:55 +01:00

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; }
}