mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 15:18:32 -06:00
20 lines
362 B
C#
20 lines
362 B
C#
|
|
|
|
|
|
namespace CanvasModel.Conversations;
|
|
public class ConversationParticipantModel
|
|
{
|
|
|
|
[JsonPropertyName("id")]
|
|
public ulong Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("full_name")]
|
|
public string FullName { get; set; }
|
|
|
|
[JsonPropertyName("avatar_url")]
|
|
public string? AvatarUrl { get; set; }
|
|
}
|