using QRRapidoApp.Models; using System.Collections.Generic; namespace QRRapidoApp.Models.ViewModels { public class SelecaoPlanoViewModel { public List Plans { get; set; } = new(); public string CountryCode { get; set; } = "BR"; } }