blob: 68f893abdfd5f4bb46f21637134e06ea68e3982f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.ComponentModel.DataAnnotations;
namespace CrupestApi.Config
{
public class TodoConfiguration
{
[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; }
}
}
|