aboutsummaryrefslogtreecommitdiff
path: root/dropped/docker/crupest-api/CrupestApi/CrupestApi.Todos/TodosConfiguration.cs
blob: e8160d2f571e1629e2feace27bd52169f5d609d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.ComponentModel.DataAnnotations;

namespace CrupestApi.Todos;

public class TodosConfiguration
{
    [Required]
    public string Username { get; set; } = default!;
    [Required]
    public int ProjectNumber { get; set; } = default!;
    [Required]
    public string Token { get; set; } = default!;
    public int Count { get; set; }
}