Files
limanapp/EgwControlCenter.Core/DTO/SubLicInsertRequestDTO.cs
T
Samuele Locatelli ff865edaf7 ACC:
- update gestione reset key e cod impiego
- test registrazione in debug
- ok generazione nuove KEY
2024-09-25 19:41:52 +02:00

21 lines
556 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static EgwControlCenter.Core.CoreEnum;
namespace EgwControlCenter.Core.DTO
{
public class SubLicenseRequestDTO
{
#region Public Properties
public string MasterKey { get; set; } = "";
public TipoLicenza LicType { get; set; } = TipoLicenza.AppSubLic;
public Dictionary<string, string> ParamDict { get; set; } = new Dictionary<string, string>();
#endregion Public Properties
}
}