Katheryne/Frontend/Models/Chat.cs

16 lines
341 B
C#
Raw Normal View History

using Katheryne.Abstractions;
2023-10-11 11:54:28 +08:00
namespace Frontend.Models;
public class Chat
{
public Guid Guid { get; } = Guid.NewGuid();
public required IChatRobot Robot { get; init; }
2023-10-11 11:54:28 +08:00
public string Title { get; set; } = string.Empty;
public bool Selected { get; set; }
public List<ChatMessage> Messages { get; } = new();
}