13 lines
270 B
C#
13 lines
270 B
C#
using xAiApi.Data.Models.Entities;
|
|
using xDataService.GraphQL;
|
|
|
|
namespace xAiApi.Data.GraphQL
|
|
{
|
|
public class XTestGraphType : XBaseGraphObjectType<XTest, int>
|
|
{
|
|
public XTestGraphType() : base()
|
|
{
|
|
Field(x => x.Title);
|
|
}
|
|
}
|
|
} |