namespace GestionIntegral.Api.Models.Suscripciones { public class FormaPago { public int IdFormaPago { get; set; } public string Nombre { get; set; } = string.Empty; public bool RequiereCBU { get; set; } public bool Activo { get; set; } } }