aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Http/HttpTimelineCreateRequest.cs
blob: e9f57e460e3ee523b277dc9d94c0fac26e314f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.ComponentModel.DataAnnotations;
using Timeline.Models.Validation;

namespace Timeline.Models.Http
{
    /// <summary>
    /// Create timeline request model.
    /// </summary>
    public class HttpTimelineCreateRequest
    {
        /// <summary>
        /// Name of the new timeline. Must be a valid name.
        /// </summary>
        [Required]
        [TimelineName]
        public string Name { get; set; } = default!;
    }
}