mirror of
https://github.com/ryzij/AMessanger-Avalonia-Client.git
synced 2026-09-18 20:13:20 +00:00
Добавил класс для представления сообщения
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace AMessanger.Models
|
||||
{
|
||||
public class Message(string userName, string content)
|
||||
{
|
||||
public string UserName { get; set; } = userName;
|
||||
public string Content { get; set; } = content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user