MapPoint.cs

20 lines | 399 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using ModelData.BusinessModel;

namespace ModelData.WebModel
{
    public class MapPoint
    {
        public string URL { set; get; }
        public string Name { set; get; }
        public string Population { set; get; }
        public Position Position { set; get; }

    }
}