18 lines
427 B
C#
18 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Knoks.Core.Entities
|
|
{
|
|
public class FileResponse
|
|
{
|
|
public Stream File { get; set; }
|
|
public string ContentType { get; set; }
|
|
public string FileDownloadName { get; set; }
|
|
public DateTimeOffset? LastModified { get; set; }
|
|
//public EntityTagHeaderValue EntityTag { get; set; }
|
|
|
|
}
|
|
}
|