13 lines
477 B
C#
13 lines
477 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Suscripciones
|
||
|
|
{
|
||
|
|
public class PromocionDto
|
||
|
|
{
|
||
|
|
public int IdPromocion { get; set; }
|
||
|
|
public string Descripcion { get; set; } = string.Empty;
|
||
|
|
public string TipoPromocion { get; set; } = string.Empty;
|
||
|
|
public decimal Valor { get; set; }
|
||
|
|
public string FechaInicio { get; set; } = string.Empty; // yyyy-MM-dd
|
||
|
|
public string? FechaFin { get; set; }
|
||
|
|
public bool Activa { get; set; }
|
||
|
|
}
|
||
|
|
}
|