2024-12-14 21:53:29 +01:00
|
|
|
|
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;
|
|
|
|
|
|
2024-12-16 23:29:57 +01:00
|
|
|
|
protected override IEnumerable<Job> RunInternal(PgsqlContext context)
|
2024-12-14 21:53:29 +01:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|