Files
canvasManagement/Management/Models/CanvasModel/ExternalTools/ResourceSelectionModel.cs
2023-01-04 17:22:36 -07:00

22 lines
456 B
C#

namespace CanvasModel.ExternalTools;
public class ResourceSelectionModel
{
[JsonPropertyName("url")]
public string Url { get; set; }
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
[JsonPropertyName("icon_url")]
public string IconUrl { get; set; }
[JsonPropertyName("selection_width")]
public uint? SelectionWidth { get; set; }
[JsonPropertyName("selection_height")]
public uint? SelectionHeight { get; set; }
}