mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
scafolded project
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
|
||||
|
||||
namespace Model.ExternalTools {
|
||||
|
||||
public class AccountNavigationModel {
|
||||
|
||||
[JsonPropertyName("url")]
|
||||
public string Url { get; set; }
|
||||
|
||||
[JsonPropertyName("enabled")]
|
||||
public bool? Enabled { get; set; }
|
||||
|
||||
[JsonPropertyName("text")]
|
||||
public string Text { get; set; }
|
||||
|
||||
[JsonPropertyName("selection_width")]
|
||||
public uint? SelectionWidth { get; set; }
|
||||
|
||||
[JsonPropertyName("selection_height")]
|
||||
public uint? SelectionHeight { get; set; }
|
||||
|
||||
[JsonPropertyName("display_type")]
|
||||
public string DisplayType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user