13 lines
311 B
C#
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; }
|
|
}
|
|
} |