mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-03 04:52:04 -04:00
13 lines
393 B
C#
13 lines
393 B
C#
namespace KfChatDotNetWsClient.Models.Events;
|
|
|
|
public class UserModel
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// Forum display name. Note that it'll be HTML encoded
|
|
/// </summary>
|
|
public required string Username { get; set; }
|
|
public Uri? AvatarUrl { get; set; }
|
|
// Unset if it's related to a chat message
|
|
public DateTimeOffset? LastActivity { get; set; }
|
|
} |