3d5419403d
- 25 domain entities mapped from original Datos/ classes - 4 enums (EstadoLead, TipoPago, TipoDocumento, TipoDescuento) - DTOs for Lead, Auth flows - 6 repository interfaces - VentasDbContext with EF Core + Npgsql - LeadRepository (command SPs) and LeadQueryRepository (query SPs) with Dapper - Program.cs with JWT auth, CORS, DI setup - appsettings.json with connection string - .gitignore for bin/obj/node_modules - ROADMAP.md for daily progress tracking
10 lines
222 B
C#
10 lines
222 B
C#
namespace Ventas.Core.Entities;
|
|
|
|
public class Programa
|
|
{
|
|
public int Id { get; set; }
|
|
public string Nombre { get; set; } = string.Empty;
|
|
public string? Tipo { get; set; }
|
|
public bool? Activo { get; set; }
|
|
}
|