15 lines
381 B
C#
15 lines
381 B
C#
using System;
|
|
|
|
namespace Levelcode_licenseCliente.Models
|
|
{
|
|
public class ModeloLicenca
|
|
{
|
|
public int IdLicenca { get; set; }
|
|
public string LicenseKey { get; set; }
|
|
public string Cliente { get; set; }
|
|
public int LimiteMaquinas { get; set; }
|
|
public DateTime? ExpiraEm { get; set; }
|
|
public string Modulos { get; set; }
|
|
}
|
|
}
|