Refactor Providing Mechanism ...

This commit is contained in:
2025-12-17 14:44:55 +03:30
parent 0b033ab1b9
commit 228e2e4eca
6 changed files with 635 additions and 498 deletions
+4 -3
View File
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using xCommons.Constants;
using xDataService.Models;
using xModels.Base;
using xModels.Dtos;
@@ -9,7 +10,7 @@ namespace xFileService.Models.Dtos
public class XFileDto : XBaseDto
{
public Guid Id { get; set; }
public XFileType Type { get; set; }
public string Name { get; set; }
public string Thumb { get; set; }
@@ -20,7 +21,7 @@ namespace xFileService.Models.Dtos
public string OwnerId { get; set; }
public XPersonDto Owner { get; set; }
public IList<string> References = new List<string>();
public IList<XReference<string>> References = new List<XReference<string>>();
}
}