16 lines
437 B
C#
16 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Entities
|
|
{
|
|
public class SymmetricCryptoKey : PersistentObject<int>
|
|
{
|
|
public virtual string Bucket { get; set; }
|
|
public virtual string Handle { get; set; }
|
|
public virtual DateTime ExpirationDate { get; set; }
|
|
public virtual byte[] Secret { get; set; }
|
|
}
|
|
}
|