mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
25 lines
525 B
C#
25 lines
525 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
using Teknik.Utilities.Attributes;
|
|
|
|
namespace Teknik.IdentityServer.Models
|
|
{
|
|
public class AuthToken
|
|
{
|
|
public Guid AuthTokenId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public string ApplicationUserId { get; set; }
|
|
|
|
|
|
[JsonIgnore]
|
|
public virtual ApplicationUser ApplicationUser { get; set; }
|
|
|
|
[JsonIgnore]
|
|
[CaseSensitive]
|
|
public string Token { get; set; }
|
|
}
|
|
}
|