mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
reformatted models
This commit is contained in:
@@ -1,20 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
namespace CanvasModel.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