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