summaryrefslogtreecommitdiff
path: root/Decompiler/Gestor.Application.Model.Ajuda/EmailAtendimento.cs
blob: 24d1c34fa5c40975390883496b7ae6ca6ee778d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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<ArquivoDigital> ArquivosAnexados { get; set; }
}