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