using System; using System.Runtime.CompilerServices; namespace Gestor.Application.ViewModels { public class Arquivo { public string Nome { get; set; } public int Processo { get; set; } public Arquivo() { } } }