This commit is contained in:
2026-04-24 13:42:02 +03:30
parent 4146e420fe
commit c3010effec
6 changed files with 232 additions and 4 deletions
+8 -4
View File
@@ -1,9 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using xAiModels.Constants;
using xModels.Base;
using xModels.Dtos;
namespace xAiModels.Models
{
@@ -37,6 +35,13 @@ namespace xAiModels.Models
/// </summary>
public DateTime UpdatedAt { get; set; }
/// <summary>
/// User Identifier ...
/// </summary>
/// <value></value>
public string OwnerId { get; set; }
public XPersonDto Owner { get; set; }
/// <summary>
/// Conversation Id ...
/// </summary>
@@ -46,6 +51,5 @@ namespace xAiModels.Models
/// Conversation ...
/// </summary>
public XAiConversationDto Conversation { get; set; }
}
}