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

19 lines
488 B
C#

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