Files
raven/server/AyaNova/models/License.cs
2018-06-28 23:41:48 +00:00

21 lines
365 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; }
}
}