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 } }