Files
raven/server/AyaNova/models/License.cs
2019-01-17 16:34:59 +00:00

21 lines
369 B
C#

using System;
using System.Collections.Generic;
using AyaNova.Biz;
namespace AyaNova.Models
{
public partial class License
{
public long Id { get; set; }
public string Key { get; set; }
public Guid DbId { get; set; }
//public int LastFetchStatus { get; set; }
// public string LastFetchMessage { get; set; }
}
}