Katheryne/Frontend/Models/Chat.cs
2023-10-11 14:23:38 +08:00

16 lines
341 B
C#

using Katheryne.Abstractions;
namespace Frontend.Models;
public class Chat
{
public Guid Guid { get; } = Guid.NewGuid();
public required IChatRobot Robot { get; init; }
public string Title { get; set; } = string.Empty;
public bool Selected { get; set; }
public List<ChatMessage> Messages { get; } = new();
}