9 lines
245 B
C#
9 lines
245 B
C#
using AMREZ.EOP.Domain.Entities.Common;
|
|
|
|
namespace AMREZ.EOP.Domain.Entities.Authentications;
|
|
|
|
public sealed class AccessTokenDeny : BaseEntity
|
|
{
|
|
public string Jti { get; set; } = default!;
|
|
public DateTimeOffset ExpiresAt { get; set; }
|
|
} |