forked from ddrilling/AsbCloudServer
12 lines
245 B
C#
12 lines
245 B
C#
using System.IO;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class ReportPropertiesDto
|
|
{
|
|
public FileStream Filestream { get; set; }
|
|
public string ContentType { get; set; }
|
|
public string FileName { get; set; }
|
|
}
|
|
}
|