11 lines
276 B
C#
11 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FileService.Application.UploadFileTask
|
|
{
|
|
public record UploadPartCommand(Stream Stream, string SessionId, int PartNum, long ContentLength);
|
|
}
|