mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
19 lines
485 B
C#
19 lines
485 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
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; }
|
|
} |