DepartmentAffiliation.cs
434 Bytes
using System;
using System.Collections.Generic;
namespace MapsDb.Models
{
public partial class DepartmentAffiliation
{
public DepartmentAffiliation()
{
ServiceObject = new HashSet<ServiceObject>();
}
public int DepartmentAffiliationId { get; set; }
public string Name { get; set; }
public virtual ICollection<ServiceObject> ServiceObject { get; set; }
}
}