You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
462B

  1. namespace Services
  2. {
  3. public class ChatConversation
  4. {
  5. public string Id { get; set; } = Guid.NewGuid().ToString();
  6. public string Type { get; set; } = "";
  7. public string Model { get; set; } = "";
  8. public string Title { get; set; } = "";
  9. public string TitleLong { get; set; } = "";
  10. public DateTime LastUse { get; set; }=DateTime.Now;
  11. public List<ChatMessage> Messages { get; set; } = new();
  12. }
  13. }