MapPoint.cs

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


namespace ModelData.BusinessModel.MainEntities
{
    public class MapPoint : BaseAndInterface.BaseOntologyEntity
    {
        public string Position { set; get; }
        public string Population { set; get; }
        public List<string> Type { set; get; }
        public List<string> Region { set; get; }

        public MapPoint()
        {
            Type = new List<string>();
            Region = new List<string>();
        }

    }
}