last works on XString Service for Entities and Dtos ...

This commit is contained in:
2026-05-23 03:14:14 +03:30
parent e6e9e1b93d
commit b44c014de8
28 changed files with 2228 additions and 32 deletions
+15
View File
@@ -0,0 +1,15 @@
using xDataService.GraphQL;
using xStringService.Models.Entities;
namespace xDataHelper.Providers.GraphQL
{
public class XStringGraphType : XBaseGraphObjectType<XString, int>
{
public XStringGraphType() : base()
{
Field(x => x.Language);
Field(x => x.ResourceTitle);
Field(x => x.TranslatedValue);
}
}
}