namespace SendEngine.Domain.Entities; public sealed class AuthClient { public Guid Id { get; set; } public Guid? TenantId { get; set; } public string ClientId { get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public string[] Scopes { get; set; } = Array.Empty(); public string Status { get; set; } = "active"; public DateTimeOffset CreatedAt { get; set; } }