mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
18 lines
322 B
C#
18 lines
322 B
C#
namespace CanvasModel.Users;
|
|
|
|
public record ShortUserModel
|
|
(
|
|
|
|
[property: JsonPropertyName("id")]
|
|
ulong Id,
|
|
|
|
[property: JsonPropertyName("display_name")]
|
|
string DisplayName,
|
|
|
|
[property: JsonPropertyName("avatar_image_url")]
|
|
string AvatarImageUrl,
|
|
|
|
[property: JsonPropertyName("html_url")]
|
|
string HtmlUrl
|
|
);
|