DissectibleStructureGroup.cs 1.18 KB
//------------------------------------------------------------------------------
// <auto-generated>
//    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.
// </auto-generated>
//------------------------------------------------------------------------------

namespace ADAM.AIAHTML5.ADMIN.API.Entity
{
    using System;
    using System.Collections.Generic;
    
    public partial class DissectibleStructureGroup
    {
        public DissectibleStructureGroup()
        {
            this.DissectibleContents = new HashSet<DissectibleContent>();
            this.DissectibleStructures = new HashSet<DissectibleStructure>();
        }
    
        public int Id { get; set; }
        public int DissectibleBodyViewId { get; set; }
        public string Sex { get; set; }
    
        public virtual DissectibleBodyView DissectibleBodyView { get; set; }
        public virtual ICollection<DissectibleContent> DissectibleContents { get; set; }
        public virtual ICollection<DissectibleStructure> DissectibleStructures { get; set; }
    }
}