2025-08-14 13:12:16 -03:00
|
|
|
// src/Elecciones.Database/Entities/AgrupacionPolitica.cs
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Elecciones.Database.Entities;
|
|
|
|
|
|
|
|
|
|
public class AgrupacionPolitica
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public string Id { get; set; } = null!;
|
|
|
|
|
public string IdTelegrama { get; set; } = null!;
|
|
|
|
|
[Required]
|
|
|
|
|
public string Nombre { get; set; } = null!;
|
2025-08-29 09:54:22 -03:00
|
|
|
public string? NombreCorto { get; set; } // Para leyendas y gráficos
|
|
|
|
|
public string? Color { get; set; } // Código hexadecimal, ej: "#1f77b4"
|
|
|
|
|
public int? OrdenDiputados { get; set; }
|
|
|
|
|
public int? OrdenSenadores { get; set; }
|
2025-08-14 13:12:16 -03:00
|
|
|
}
|