using Gestor.Model.Domain.Common; using System; using System.Collections.ObjectModel; using System.Runtime.CompilerServices; namespace Gestor.Application.Model.Ajuda { public class EmailAtendimento { public ObservableCollection ArquivosAnexados { get; set; } public string Assunto { get; set; } public string Corpo { get; set; } public string DDD { get; set; } public string EMail { get; set; } public string IDAcesso { get; set; } public string Nome { get; set; } public string SenhaAcesso { get; set; } public string Telefone { get; set; } public EmailAtendimento() { } } }