11 lines
296 B
C#
11 lines
296 B
C#
namespace IM_API.Dtos
|
|
{
|
|
public class CreateUploadTaskDto
|
|
{
|
|
public string FileName { get; set; } = default!;
|
|
public long FileSize { get; set; }
|
|
public string ContentType { get; set; } = default!;
|
|
public string FileHash { get; set; } = default!;
|
|
}
|
|
}
|