29 lines
837 B
C#
29 lines
837 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace rockfishCore.Models
|
|
{
|
|
public partial class License
|
|
{
|
|
public License(){
|
|
DtCreated=Util.DateUtil.NowAsEpoch();
|
|
}
|
|
public long Id { get; set; }
|
|
public long CustomerId { get; set; }
|
|
public long? SiteId { get; set; }
|
|
public long DtCreated { get; set; }
|
|
public string RegTo { get; set; }
|
|
public string Key { get; set; }
|
|
public string Email { get; set; }
|
|
public string Code { get; set; }
|
|
public string FetchFrom { get; set; }
|
|
public long? DtFetched { get; set; }
|
|
public bool Fetched { get; set; }
|
|
public string DbId { get; set; }
|
|
public long? DtLicenseExpiration { get; set; }
|
|
public long? DtMaintenanceExpiration { get; set; }
|
|
|
|
}
|
|
}
|