Files
yavsc/src/Api/Controllers/Blogspot/RenameFileQuery.cs
Paul Schneider e6f8947c08
Some checks failed
Dotnet build and test / log-the-inputs (push) Successful in 9s
Dotnet build and test / build (push) Failing after 1m33s
misc
2025-07-07 07:49:18 +01:00

16 lines
350 B
C#

using Yavsc.Attributes.Validation;
namespace Yavsc.Models.FileSystem
{
public class RenameFileQuery
{
[ValidRemoteUserFilePath]
[YaStringLength(1, 512)]
public required string Id { get; set; }
[YaStringLength(0, 512)]
[ValidRemoteUserFilePath]
public required string To { get; set; }
}
}