StorageRenameParams
Namespace: Busy.Bar
Source and destination paths for a rename/move operation.
public sealed record class StorageRenameParams : System.IEquatable`1[[Busy.Bar.StorageRenameParams, BusyBar, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]
Inheritance Object → StorageRenameParams
Implements IEquatable<StorageRenameParams>
Attributes NullableContextAttribute, NullableAttribute
Properties
Path
Current path, under /ext, of the file to move.
public string Path { get; init; }
Property Value
NewPath
New path, under /ext, to move the file to.
public string NewPath { get; init; }
Property Value
Constructors
StorageRenameParams(String, String)
Source and destination paths for a rename/move operation.
public StorageRenameParams(string Path, string NewPath)
Parameters
Path String
Current path, under /ext, of the file to move.
NewPath String
New path, under /ext, to move the file to.