Files
xAiModels/Providers/GraphQL/XAiConversationGraphType.cs
T
2026-07-26 21:19:40 +03:30

18 lines
467 B
C#

using System;
using xAiModels.Models.Entities;
using xDataService.GraphQL;
namespace xAiModels.Providers.GraphQL
{
public class XAiConversationGraphType : XBaseGraphObjectType<XAiConversation, Guid>
{
public XAiConversationGraphType() : base()
{
Field(x => x.Title);
Field(x => x.OwnerId);
Field(x => x.CreatedOn);
Field(x => x.UpdatedAt);
Field(x => x.ProjectId);
}
}
}