This commit is contained in:
2026-05-09 22:22:02 +03:30
parent 6b6790b61a
commit 2a0e8e4074
17 changed files with 205 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using xDataService.GraphQL;
using xServices.Models.Entities;
namespace xServices.Providers
{
public class XTestGraphType : XBaseGraphObjectType<XTest, Guid>
{
public XTestGraphType() : base()
{
Field(x => x.Firstname);
Field(x => x.Lastname);
}
}
}