mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
29 lines
598 B
C#
29 lines
598 B
C#
|
|
|
|
|
|
|
|
namespace CanvasModel.Users;
|
|
public class UserDisplayModel
|
|
{
|
|
|
|
[JsonPropertyName("id")]
|
|
public ulong? Id { get; set; }
|
|
|
|
[JsonPropertyName("short_name")]
|
|
public string? ShortName { get; set; }
|
|
|
|
[JsonPropertyName("display_name")]
|
|
public string? DisplayName { get; set; }
|
|
|
|
[JsonPropertyName("avatar_image_url")]
|
|
public string AvatarImageUrl { get; set; }
|
|
|
|
[JsonPropertyName("html_url")]
|
|
public string HtmlUrl { get; set; }
|
|
|
|
[JsonPropertyName("pronouns")]
|
|
public string? Pronouns { get; set; }
|
|
|
|
[JsonPropertyName("anonymous_id")]
|
|
public string AnonymousId { get; set; }
|
|
} |