ServiceObjectType.cs 422 Bytes
using System;
using System.Collections.Generic;

namespace MapsDb.Models
{
    public partial class ServiceObjectType
    {
        public ServiceObjectType()
        {
            ServiceObject = new HashSet<ServiceObject>();
        }

        public int ServiceObjectTypeId { get; set; }
        public string Name { get; set; }

        public virtual ICollection<ServiceObject> ServiceObject { get; set; }
    }
}