10 lines
218 B
C#
10 lines
218 B
C#
|
|
namespace PruebaAzureAD.Models
|
|||
|
|
{
|
|||
|
|
public class CantonViewModel
|
|||
|
|
{
|
|||
|
|
public int IdProvincia { get; set; }
|
|||
|
|
public int IdCanton { get; set; }
|
|||
|
|
public string Descripcion { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|