blob: 10c42c8b6524df02d7d36d91116246d08444f2cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using Gestor.Model.Common;
namespace Gestor.Model.API;
public class AjudaTela
{
public long Id { get; set; }
public TipoTela Tela { get; set; }
public string Titulo { get; set; }
public string Descricao { get; set; }
public string Link { get; set; }
public int Minuto { get; set; }
public int Segundo { get; set; }
}
|