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