yavsc/src/Api/Controllers/Blogspot/MoveFileQuery.cs

16 lines
349 B
C#
Raw Normal View History

2019-09-08 05:17:21 +01:00
using Yavsc.Attributes.Validation;
namespace Yavsc.Models.FileSystem
{
2025-07-07 07:49:18 +01:00
public class MoveFileQuery
{
[ValidRemoteUserFilePath]
[YaStringLength(1, 512)]
public required string Id { get; set; }
2019-09-08 05:17:21 +01:00
2025-07-07 07:49:18 +01:00
[YaStringLength(0, 512)]
[ValidRemoteUserFilePath]
public required string To { get; set; }
}
2019-09-08 05:17:21 +01:00
}