13 lines
208 B
C#
13 lines
208 B
C#
using System;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
public partial class License
|
|
{
|
|
public long Id { get; set; }
|
|
public string Key { get; set; }
|
|
public Guid DbId { get; set; }
|
|
}
|
|
}
|