nxlizenz_projects_visualstudio/NxLizenz/License.cs
2020-12-01 12:16:15 +01:00

32 lines
665 B
C#

/*
* Erstellt mit SharpDevelop.
* Benutzer: 001142709
* Datum: 05.04.2018
* Zeit: 11:21
*
* Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
*/
using System;
using System.Collections.Generic;
namespace NxLizenz
{
/// <summary>
/// Description of License.
/// </summary>
public class License
{
public string LicenseName { set; get; }
public int LicensesTotal { set; get; }
public int LicensesInUse { set; get; }
public string LicenseVersion { set; get; }
public string LicenseVendor { set; get; }
public string LicenseType { set; get; } //z.B.: floating
public License()
{
}
}
}