Files
TorchRemote/TorchRemote.Models/Responses/SettingInfoResponse.cs
2022-09-30 11:51:34 +07:00

6 lines
280 B
C#

using Json.Schema;
namespace TorchRemote.Models.Responses;
public record SettingInfoResponse(string Name, JsonSchema Schema, ICollection<SettingPropertyInfo> PropertyInfos);
public record SettingPropertyInfo(string Name, string PropertyName, string? Description, int? Order);