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

15 lines
261 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; }
}
}