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

ResponseFragment.cs 488 B

123456789101112131415161718
  1. namespace LLama.Web.Models
  2. {
  3. public class ResponseFragment
  4. {
  5. public ResponseFragment(string id, string content = null, bool isFirst = false, bool isLast = false)
  6. {
  7. Id = id;
  8. IsLast = isLast;
  9. IsFirst = isFirst;
  10. Content = content;
  11. }
  12. public string Id { get; set; }
  13. public string Content { get; set; }
  14. public bool IsLast { get; set; }
  15. public bool IsFirst { get; set; }
  16. }
  17. }