13 lines
450 B
C#
13 lines
450 B
C#
using System;
|
|
namespace Net.BITKit.Chat
|
|
{
|
|
public record ChatUserData
|
|
{
|
|
public int Id { get; set; }
|
|
public string UserName { get; set; } = nameof(UserName);
|
|
public string Password { get; set; } = nameof(Password);
|
|
public DateTime RegisterTime { get; set; } = DateTime.Now;
|
|
public DateTime LastLoginTime { get; set; } = DateTime.Now;
|
|
public string AvatarUrl { get; set; } = string.Empty;
|
|
};
|
|
} |