12 lines
194 B
C#
12 lines
194 B
C#
namespace zero.Core.Entities
|
|
{
|
|
public class FileResult
|
|
{
|
|
public string Filename { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public string ContentType { get; set; }
|
|
}
|
|
}
|