blob: e5aed0685924eb3a062fdfb2f76139f3542b1f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.ComponentModel.DataAnnotations;
using Timeline.Models.Validation;
namespace Timeline.Models.Http
{
/// <summary>
/// Move highlight timeline request body model.
/// </summary>
public class HttpHighlightTimelineMoveRequest
{
[GeneralTimelineName]
public string Timeline { get; set; } = default!;
[Required]
public long? NewPosition { get; set; }
}
}
|