blob: ce08dc95f72b49cf8ecff09f2ad47d25113e70d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
namespace Gestor.Model.API;
public class Version
{
public string Name { get; set; }
public string Uri { get; set; }
public DateTime Data { get; set; }
public string Beta { get; set; }
public string Status { get; set; }
public bool Obrigatorio { get; set; }
public bool Erro { get; set; }
public string VersaoAplicacao { get; set; }
}
|