18 lines
		
	
	
		
			697 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			697 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								namespace GestionIntegral.Api.Models.Suscripciones
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public class Suscripcion
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        public int IdSuscripcion { get; set; }
							 | 
						||
| 
								 | 
							
								        public int IdSuscriptor { get; set; }
							 | 
						||
| 
								 | 
							
								        public int IdPublicacion { get; set; }
							 | 
						||
| 
								 | 
							
								        public DateTime FechaInicio { get; set; }
							 | 
						||
| 
								 | 
							
								        public DateTime? FechaFin { get; set; }
							 | 
						||
| 
								 | 
							
								        public string Estado { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								        public string DiasEntrega { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								        public string? Observaciones { get; set; }
							 | 
						||
| 
								 | 
							
								        public int IdUsuarioAlta { get; set; }
							 | 
						||
| 
								 | 
							
								        public DateTime FechaAlta { get; set; }
							 | 
						||
| 
								 | 
							
								        public int? IdUsuarioMod { get; set; }
							 | 
						||
| 
								 | 
							
								        public DateTime? FechaMod { get; set; }
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |