28 lines
703 B
C#
28 lines
703 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace OliviaAddInPro.Model
|
|
{
|
|
[Serializable]
|
|
public class OliviaConfNW
|
|
{
|
|
public OliviaConfNW()
|
|
{
|
|
}
|
|
|
|
public string nombre { get; set; }
|
|
public string campo_velocidad { get; set; }
|
|
public string campo_nombre { get; set; }
|
|
public string campo_sentidoFT { get; set; }
|
|
public string campo_sentidoTf { get; set; }
|
|
public string campo_peatonal { get; set; }
|
|
|
|
public bool comprueba_elevacion { get; set; }
|
|
public bool revisa_topologia { get; set; }
|
|
}
|
|
}
|