//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace ADAM.AIAHTML5.ADMIN.API.Entity { using System; using System.Collections.Generic; public partial class DissectibleStructureGroup { public DissectibleStructureGroup() { this.DissectibleContents = new HashSet(); this.DissectibleStructures = new HashSet(); } public int Id { get; set; } public int DissectibleBodyViewId { get; set; } public string Sex { get; set; } public virtual DissectibleBodyView DissectibleBodyView { get; set; } public virtual ICollection DissectibleContents { get; set; } public virtual ICollection DissectibleStructures { get; set; } } }