Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

15 lines
341B

  1. using System.Text.Json.Serialization;
  2. namespace Services
  3. {
  4. public class ChatMessage
  5. {
  6. public string Role { get; set; } = "";// "user" ou "assistant"
  7. public string Content { get; set; } = "";
  8. public DateTime Timestamp { get; set; } = DateTime.Now;
  9. public string Model { get; set; } = "";
  10. }
  11. }