ContentAttributeType.cs
1.1 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 ContentAttributeType
{
public ContentAttributeType()
{
this.ContentTypeToAttributeTypeMaps = new HashSet<ContentTypeToAttributeTypeMap>();
}
public int Id { get; set; }
public string Name { get; set; }
public string ShortName { get; set; }
public string IsEnumerated { get; set; }
public string IsMultiValued { get; set; }
public string IsFilter { get; set; }
public virtual ICollection<ContentTypeToAttributeTypeMap> ContentTypeToAttributeTypeMaps { get; set; }
}
}