19 lines
415 B
C#
19 lines
415 B
C#
using System.Collections.Generic;
|
|
using zero.Core.Attributes;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Core.Tokens
|
|
{
|
|
[Collection("Tokens")]
|
|
public class SecurityToken : IZeroDbConventions
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Key { get; set; }
|
|
|
|
public string Token { get; set; }
|
|
|
|
public Dictionary<string, string> Metadata { get; set; } = new Dictionary<string, string>();
|
|
}
|
|
}
|