diff options
Diffstat (limited to 'Decompiler/Gestor.Application.Model.Ajuda/Atendimento.cs')
| -rw-r--r-- | Decompiler/Gestor.Application.Model.Ajuda/Atendimento.cs | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Model.Ajuda/Atendimento.cs b/Decompiler/Gestor.Application.Model.Ajuda/Atendimento.cs new file mode 100644 index 0000000..4b9d991 --- /dev/null +++ b/Decompiler/Gestor.Application.Model.Ajuda/Atendimento.cs @@ -0,0 +1,68 @@ +using System; + +namespace Gestor.Application.Model.Ajuda; + +public class Atendimento +{ + private string _solicitante; + + private string _assunto; + + private string _status; + + private string _corpo; + + public long IdAtendimento { get; set; } + + public DateTime? Abertura { get; set; } + + public string Solicitante + { + get + { + return _solicitante?.ToUpper().Trim(); + } + set + { + _solicitante = value; + } + } + + public string Assunto + { + get + { + return _assunto?.ToUpper().Trim(); + } + set + { + _assunto = value; + } + } + + public DateTime? Solucao { get; set; } + + public string Status + { + get + { + return _status?.ToUpper().Trim(); + } + set + { + _status = value; + } + } + + public string Corpo + { + get + { + return _corpo?.ToUpper().Trim(); + } + set + { + _corpo = value; + } + } +} |