Rob / Application /DTOs /FileDTOs /FileUploadDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
308 Bytes
namespace Application.DTOs.FileDTOs
{
public class FileUploadDTO
{
public string FileName { get; set; } = string.Empty;
public string ContentType { get; set; } = string.Empty;
public long Length { get; set; }
public Stream Content { get; set; } = Stream.Null;
}
}