WiP
This commit is contained in:
14
MyCompany.MyProject.BackendApi/Models/PresetDefinition.cs
Normal file
14
MyCompany.MyProject.BackendApi/Models/PresetDefinition.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace MyCompany.MyProject.BackendApi.Models;
|
||||
|
||||
record PresetDefinition
|
||||
{
|
||||
public string PresetId { get; set; } = string.Empty;
|
||||
public string PresetName { get; set; } = string.Empty;
|
||||
public string BaseComponentCode { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public string Version { get; set; } = string.Empty;
|
||||
public string Author { get; set; } = string.Empty;
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public Dictionary<string, object> Inputs { get; set; } = new();
|
||||
public Dictionary<string, object> Metadata { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user