18 lines
413 B
C#
18 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core
|
|
{
|
|
public class UserLicenseRequest
|
|
{
|
|
#region Public Properties
|
|
|
|
public string MasterKey { get; set; } = "";
|
|
public Dictionary<string, string> ParamDict { get; set; } = new Dictionary<string, string>();
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |