15 lines
625 B
C#
15 lines
625 B
C#
namespace GestionIntegral.Api.Dtos.Suscripciones
|
|
{
|
|
public class SuscripcionDto
|
|
{
|
|
public int IdSuscripcion { get; set; }
|
|
public int IdSuscriptor { get; set; }
|
|
public int IdPublicacion { get; set; }
|
|
public string NombrePublicacion { get; set; } = string.Empty; // Para UI
|
|
public string FechaInicio { get; set; } = string.Empty; // Formato "yyyy-MM-dd"
|
|
public string? FechaFin { get; set; }
|
|
public string Estado { get; set; } = string.Empty;
|
|
public string DiasEntrega { get; set; } = string.Empty;
|
|
public string? Observaciones { get; set; }
|
|
}
|
|
} |