mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
10 lines
286 B
C#
10 lines
286 B
C#
namespace KfChatDotNetWsClient.Models.Events;
|
|
|
|
public class UserModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; }
|
|
public Uri AvatarUrl { get; set; }
|
|
// Unset if it's related to a chat message
|
|
public DateTimeOffset? LastActivity { get; set; }
|
|
} |