15 lines
545 B
C#
15 lines
545 B
C#
|
|
namespace GestionIntegral.Api.Models.Suscripciones
|
||
|
|
{
|
||
|
|
public class Promocion
|
||
|
|
{
|
||
|
|
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 DateTime FechaInicio { get; set; }
|
||
|
|
public DateTime? FechaFin { get; set; }
|
||
|
|
public bool Activa { get; set; }
|
||
|
|
public int IdUsuarioAlta { get; set; }
|
||
|
|
public DateTime FechaAlta { get; set; }
|
||
|
|
}
|
||
|
|
}
|