Initial commit

This commit is contained in:
barelyprofessional
2024-03-25 20:11:49 +08:00
commit 9f92fc8e27
62 changed files with 17831 additions and 0 deletions

View 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; }
}