using System; using xAiModels.Models.Entities; using xDataService.GraphQL; namespace xAiModels.Providers.GraphQL { public class XAiProjectGraphType : XBaseGraphObjectType { 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); } } }