LevelcodeLicenseClient/Models/LicensePayload.cs
2026-03-25 16:34:45 -03:00

20 lines
550 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Levelcode_licenseCliente.Models
{
public class LicensePayload
{
public string Key { get; set; } // LicenseKey
public int LicencaId { get; set; }
public string Cliente { get; set; }
public DateTime? ExpiraEm { get; set; }
public int LimiteMaquinas { get; set; }
public string[] Modulos { get; set; }
public string[] Hwids { get; set; }
}
}