8 lines
211 B
C#
8 lines
211 B
C#
namespace SzCore.DataObjects;
|
|
|
|
public class SzDataObject
|
|
{
|
|
public required string Name {get; set;}
|
|
public required string Id {get; set;}
|
|
public Dictionary<string, SzField> Fields {get; set;} = [];
|
|
} |