Files
Elecciones-2025/Elecciones-Web/src/Elecciones.Database/Entities/AgrupacionPolitica.cs

17 lines
597 B
C#
Raw Normal View History

// 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!;
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; }
}