17 lines
326 B
C#
17 lines
326 B
C#
namespace Gremlin_BlazorServer.Services.GUClasses
|
|
{
|
|
public class DataIdentifier
|
|
{
|
|
//public DataIdentifier() { }
|
|
|
|
public DataIdentifier(string dataType, string identifier)
|
|
{
|
|
DataType = dataType;
|
|
Identifier = identifier;
|
|
}
|
|
|
|
public string DataType { get; set; }
|
|
public string Identifier { get; set; }
|
|
}
|
|
}
|