mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
scafolded project
This commit is contained in:
20
Management/Models/CanvasModel/Accounts/HelpLinksModel.cs
Normal file
20
Management/Models/CanvasModel/Accounts/HelpLinksModel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
||||
namespace Model.Accounts {
|
||||
|
||||
public class HelpLinksModel {
|
||||
|
||||
[JsonPropertyName("help_link_name")]
|
||||
public string HelpLinkName { get; set; }
|
||||
|
||||
[JsonPropertyName("help_link_icon")]
|
||||
public string HelpLinkIcon { get; set; }
|
||||
|
||||
[JsonPropertyName("custom_help_links")]
|
||||
public IEnumerable<HelpLinkModel> CustomHelpLinks { get; set; }
|
||||
|
||||
[JsonPropertyName("default_help_links")]
|
||||
public IEnumerable<HelpLinkModel> DefaultHelpLinks { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user