28 lines
594 B
C#
28 lines
594 B
C#
namespace Adaptation.FileHandlers.json;
|
|
|
|
public class Profile
|
|
{
|
|
|
|
public string Id { get; }
|
|
public string Name { get; }
|
|
public string Label { get; }
|
|
public int Allocated { get; }
|
|
public int Used { get; }
|
|
public string List { get; }
|
|
|
|
public Profile(string id,
|
|
string name,
|
|
string label,
|
|
int allocated,
|
|
int used,
|
|
string list)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
Label = label;
|
|
Allocated = allocated;
|
|
Used = used;
|
|
List = list;
|
|
}
|
|
|
|
} |