15 lines
367 B
C#
15 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Entities
|
|
{
|
|
public class Nonce : PersistentObject<int>
|
|
{
|
|
public virtual string Context { get; set; }
|
|
public virtual string Code { get; set; }
|
|
public virtual DateTime Timestamp { get; set; }
|
|
}
|
|
}
|