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 ParamDict { get; set; } = new Dictionary(); #endregion Public Properties } }