first commit
This commit is contained in:
19
Entidades/ExpedienteInfo.cs
Normal file
19
Entidades/ExpedienteInfo.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EFCDesk.Entidades
|
||||
{
|
||||
// Clase auxiliar para manejar expedientes en memoria
|
||||
public class ExpedienteInfo
|
||||
{
|
||||
public string Expediente { get; set; } = "";
|
||||
public string Clave { get; set; } = "";
|
||||
public string Estado { get; set; } = "";
|
||||
public string FechaCreacion { get; set; } = "";
|
||||
public string Ruta { get; set; } = "";
|
||||
public string Ticks { get; set; } = "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user