11 lines
355 B
C#
11 lines
355 B
C#
namespace MemberCenter.Domain.Entities;
|
|
|
|
public sealed class AuthClientUsagePermission
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Usage { get; set; } = string.Empty;
|
|
public string Scope { get; set; } = string.Empty;
|
|
public bool IsEnabled { get; set; } = true;
|
|
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
}
|