This commit is contained in:
2026-05-28 07:32:46 +03:30
parent e079660afe
commit a4c0f9a181
46 changed files with 1222 additions and 4023 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using xDataService.GraphQL;
using xFileService.Models.Entities;
namespace xFileService.Providers.GraphQL
{
public class XFileGraphType : XBaseGraphObjectType<XFile, Guid>
{
public XFileGraphType() : base()
{
Field(x => x.Type);
Field(x => x.Name);
Field(x => x.Path);
Field(x => x.Thumb);
Field(x => x.OwnerId);
Field(x => x.FileName);
Field(x => x.ThumbPath);
Field(x => x.UploadedOn);
Field(x => x.References);
}
}
}