This commit is contained in:
21
Models/License.cs
Normal file
21
Models/License.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
||||
namespace rockfishCore.Models
|
||||
{
|
||||
public partial class License
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long CustomerId { 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user