13 lines
268 B
C#
13 lines
268 B
C#
|
|
using QRRapidoApp.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QRRapidoApp.Models.ViewModels
|
|
{
|
|
public class SelecaoPlanoViewModel
|
|
{
|
|
public List<Plan> Plans { get; set; } = new();
|
|
public string CountryCode { get; set; } = "BR";
|
|
}
|
|
}
|