using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AntCity.CityBuilder.DataModel.Model { //----------------------------------------------------------------------- // Traffic //----------------------------------------------------------------------- [Obsolete] public class Feature { public int Id { get; set; } public int FeatureId { get; set; } public bool IsExcluded { get; set; } public bool UseTraffic { get; set; } } }