using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Sleis.Models { public class SimpleItem : BaseIdentityModel { public virtual string Title { get; set; } public SimpleItem() { } public SimpleItem(int id, string title) : base(id) { Title = title; } } }