You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Security/Authentication/IAuthenticationToken.cs

13 lines
288 B

using Connected.Data;
namespace Connected.Security.Authentication;
public interface IAuthenticationToken : IPrimaryKey<int>
{
string Token { get; init; }
string Identity { get; init; }
DateTime Expiration { get; init; }
Status Status { get; init; }
string Tags { get; init; }
}