Files
raven/server/AyaNova/models/License.cs

15 lines
300 B
C#

using System;
namespace AyaNova.Models
{
public class License
{
public long Id { get; set; }
public string Key { get; set; }
public string DbId { get; set; }
public bool LicenseAgree { get; set; }//flag indicating end user license agreement consent
}
}