using System.ComponentModel.DataAnnotations;
namespace Timeline.Models.Http
{
    public class HttpTimelinePostCreateRequestData
    {
        /// 
        /// Mime type of the data.
        /// 
        [Required]
        public string ContentType { get; set; } = default!;
        /// 
        /// Base64 of data.
        /// 
        [Required]
        public string Data { get; set; } = default!;
    }
}