mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
21 lines
452 B
C#
21 lines
452 B
C#
|
|
|
|
|
|
namespace Model.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; }
|
|
}
|
|
}
|