mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
11 lines
220 B
C#
11 lines
220 B
C#
namespace CanvasModel.Users;
|
|
|
|
public record AnonymousUserDisplayModel
|
|
(
|
|
[property: JsonPropertyName("anonymous_id")]
|
|
string AnonymousId,
|
|
|
|
[property: JsonPropertyName("avatar_image_url")]
|
|
string AvatarImageUrl
|
|
);
|