Files
BotPages/Demo/Models/Request.cs
FrigaT e6e5459280
All checks were successful
CI / build-test (push) Successful in 30s
Доработано Demo
2025-12-05 13:33:25 +03:00

16 lines
321 B
C#

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; } = "";
}
}