using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Demo.Models { internal class Request { public string Title { get; set; } public int FilesCount { get; set; } public string Details { get; set; } = ""; } }