using System; using System.Runtime.CompilerServices; namespace Gestor.Model.API { public class Version { public string Beta { get; set; } public DateTime Data { get; set; } public bool Erro { get; set; } public string Name { get; set; } public bool Obrigatorio { get; set; } public string Status { get; set; } public string Uri { get; set; } public string VersaoAplicacao { get; set; } public Version() { } } }