mirror of https://github.com/abpframework/abp
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.
31 lines
652 B
31 lines
652 B
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
namespace Volo.Abp.IdentityServer.Devices
|
|
{
|
|
public class DeviceFlowCodes : CreationAuditedAggregateRoot<Guid>
|
|
{
|
|
public virtual string DeviceCode { get; set; }
|
|
|
|
public virtual string UserCode { get; set; }
|
|
|
|
public virtual string SubjectId { get; set; }
|
|
|
|
public virtual string ClientId { get; set; }
|
|
|
|
public virtual DateTime? Expiration { get; set; }
|
|
|
|
public virtual string Data { get; set; }
|
|
|
|
protected DeviceFlowCodes()
|
|
{
|
|
|
|
}
|
|
|
|
public DeviceFlowCodes(Guid id)
|
|
: base(id)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |