using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core { public class UserLicenseRequest { public string MasterKey { get; set; } = ""; public Dictionary ParamDict { get; set; } = new Dictionary(); } }