mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 15:18:32 -06:00
22 lines
451 B
C#
22 lines
451 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
namespace CanvasModel.Accounts;
|
|
public class HelpLinkModel
|
|
{
|
|
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonPropertyName("text")]
|
|
public string Text { get; set; }
|
|
|
|
[JsonPropertyName("subtext")]
|
|
public string Subtext { get; set; }
|
|
|
|
[JsonPropertyName("url")]
|
|
public string Url { get; set; }
|
|
|
|
[JsonPropertyName("available_to")]
|
|
public IEnumerable<string> AvailableTo { get; set; }
|
|
} |