add Data Support ...

This commit is contained in:
2025-12-06 22:23:17 +03:30
parent 15171511f5
commit 3ea6eb2012
13 changed files with 226 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.IO;
using xModels.Base;
namespace xFileService.Models.Dtos
{
public class XFileStreamDescriptorDto : XBaseDto
{
public Stream Stream { get; set; }
public string MIMEType { get; set; }
public string Name { get; set; }
public string Path { get; set; }
}
}