Add String Service and Implement all of it's requirements as an xDashboard Package ...
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using xDataService.GraphQL;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xDataHelper.GraphQL
|
||||
{
|
||||
public class XStringGraphType : XBaseGraphObjectType<XString, int>
|
||||
{
|
||||
public XStringGraphType() : base()
|
||||
{
|
||||
Field(x => x.Language);
|
||||
Field(x => x.ResourceTitle);
|
||||
Field(x => x.TranslatedValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user