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