mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
25 lines
553 B
C#
25 lines
553 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
|
|
); |