Nuovi oggetti licenza x testing

This commit is contained in:
Samuele Locatelli
2021-11-13 11:00:50 +01:00
parent 17c59324f4
commit 3333b7f827
2 changed files with 25 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core
{
public class LicenseCoord
{
#region Public Properties
public string CodApp { get; set; } = "";
public string CodInst { get; set; } = "";
public string Enigma { get; set; } = "";
public string MasterKey { get; set; } = "";
#endregion Public Properties
}
}
+5 -1
View File
@@ -8,7 +8,11 @@ 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
}
}
}