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.

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