Feat: Se añaden las capas de modelos y respositorios para el modulo de Suscripciones
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
namespace GestionIntegral.Api.Models.Suscripciones
|
||||
{
|
||||
public class Suscriptor
|
||||
{
|
||||
public int IdSuscriptor { get; set; }
|
||||
public string NombreCompleto { get; set; } = string.Empty;
|
||||
public string? Email { get; set; }
|
||||
public string? Telefono { get; set; }
|
||||
public string Direccion { get; set; } = string.Empty;
|
||||
public string TipoDocumento { get; set; } = string.Empty;
|
||||
public string NroDocumento { get; set; } = string.Empty;
|
||||
public string? CBU { get; set; }
|
||||
public int IdFormaPagoPreferida { get; set; }
|
||||
public string? Observaciones { get; set; }
|
||||
public bool Activo { get; set; }
|
||||
public int IdUsuarioAlta { get; set; }
|
||||
public DateTime FechaAlta { get; set; }
|
||||
public int? IdUsuarioMod { get; set; }
|
||||
public DateTime? FechaMod { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user