15 lines
344 B
C#
15 lines
344 B
C#
namespace IM_API.VOs
|
|
{
|
|
public class UploadPartInstructionVo
|
|
{
|
|
public bool Skip { get; set; }
|
|
public int PartNumber { get; set; }
|
|
|
|
public string Method { get; set; } = "PUT";
|
|
public string Url { get; set; } = default!;
|
|
|
|
public Dictionary<string, string> Headers { get; set; } = new();
|
|
}
|
|
|
|
}
|