mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Initial commit
This commit is contained in:
10
KfChatDotNetWsClient/Models/Events/UserModel.cs
Normal file
10
KfChatDotNetWsClient/Models/Events/UserModel.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user