WiP
This commit is contained in:
10
MyCompany.MyProject.BackendApi/Models/ComponentInput.cs
Normal file
10
MyCompany.MyProject.BackendApi/Models/ComponentInput.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace MyCompany.MyProject.BackendApi.Models;
|
||||
|
||||
record ComponentInput
|
||||
{
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Type { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public List<string>? Enum { get; set; }
|
||||
public bool Required { get; set; } = true;
|
||||
}
|
||||
Reference in New Issue
Block a user