mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 15:50:13 +01:00
13 lines
552 B
C#
13 lines
552 B
C#
namespace API.Schema.Jobs;
|
|
|
|
public class MoveFileOrFolderJob(string fromLocation, string toLocation, string? parentJobId = null, string[]? dependsOnJobIds = null)
|
|
: Job(TokenGen.CreateToken(typeof(MoveFileOrFolderJob), 64), JobType.MoveFileOrFolderJob, 0, parentJobId, dependsOnJobIds)
|
|
{
|
|
public string FromLocation { get; init; } = fromLocation;
|
|
public string ToLocation { get; init; } = toLocation;
|
|
|
|
protected override IEnumerable<Job> RunInternal(PgsqlContext context)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |