Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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. }