Files
xFileService/Models/Dtos/XFileStreamDescriptorDto.cs
2025-12-06 22:23:17 +03:30

13 lines
311 B
C#

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; }
}
}