summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs')
-rw-r--r--Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs160
1 files changed, 0 insertions, 160 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs b/Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs
deleted file mode 100644
index 856081d..0000000
--- a/Gestor.Model/Model.Domain.Relatorios/Tarefa/Tarefa.cs
+++ /dev/null
@@ -1,160 +0,0 @@
-using Gestor.Model.Attributes;
-using Gestor.Model.Common;
-using System;
-using System.ComponentModel;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Model.Domain.Relatorios.Tarefa
-{
- public class Tarefa
- {
- private string _usuario;
-
- private string _cliente;
-
- private string _referencia;
-
- private string _tipoTarefa;
-
- [Description("AGENDAMENTO")]
- [Tipo("DATA/TIME")]
- public DateTime Agendamento
- {
- get;
- set;
- }
-
- [Description("CLIENTE")]
- public string Cliente
- {
- get
- {
- string str = this._cliente;
- if (str != null)
- {
- return str.ToUpper();
- }
- return null;
- }
- set
- {
- this._cliente = value;
- }
- }
-
- [Description("CONCLUSÃO")]
- [Tipo("DATA/TIME?")]
- public DateTime? Conclusao
- {
- get;
- set;
- }
-
- [Tipo("INVALID")]
- public Gestor.Model.Common.TipoTarefa Entidade
- {
- get;
- set;
- }
-
- [Tipo("INVALID")]
- public long Id
- {
- get;
- set;
- }
-
- [Tipo("INVALID")]
- public long IdCliente
- {
- get;
- set;
- }
-
- [Tipo("INVALID")]
- public long IdEntidade
- {
- get;
- set;
- }
-
- [Description("REFERÊNCIA")]
- public string Referencia
- {
- get
- {
- string str = this._referencia;
- if (str != null)
- {
- return str.ToUpper();
- }
- return null;
- }
- set
- {
- this._referencia = value;
- }
- }
-
- [Tipo("INVALID")]
- public bool Selecionado
- {
- get;
- set;
- }
-
- [Description("STATUS")]
- public string Status
- {
- get;
- set;
- }
-
- [Description("TIPO DE TAREFA")]
- public string TipoTarefa
- {
- get
- {
- string str = this._tipoTarefa;
- if (str != null)
- {
- return str.ToUpper();
- }
- return null;
- }
- set
- {
- this._tipoTarefa = value;
- }
- }
-
- [Description("TÍTULO")]
- public string Titulo
- {
- get;
- set;
- }
-
- [Description("USUÁRIO")]
- public string Usuario
- {
- get
- {
- string str = this._usuario;
- if (str != null)
- {
- return str.ToUpper();
- }
- return null;
- }
- set
- {
- this._usuario = value;
- }
- }
-
- public Tarefa()
- {
- }
- }
-} \ No newline at end of file