1e5fda085d
- modifica default data conf (non roaming) - eliminate notifiche multiple - update msg doppia esecuzione
20 lines
509 B
C#
20 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static Core.Enum;
|
|
|
|
namespace Core
|
|
{
|
|
public class UserLicenseRequest
|
|
{
|
|
#region Public Properties
|
|
|
|
public string MasterKey { get; set; } = "";
|
|
public TipoLicenza LicType { get; set; } = TipoLicenza.UserKey;
|
|
public Dictionary<string, string> ParamDict { get; set; } = new Dictionary<string, string>();
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |