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