Files
limanapp/Core/UserLicenseRequest.cs
T
2021-11-05 19:39:40 +01:00

15 lines
341 B
C#

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<string, string> ParamDict { get; set; } = new Dictionary<string, string>();
}
}