Added BaseEntity so that Person, User, and other misc classes don't have to inherit from BaseItem

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-12 19:57:54 -04:00
parent 16593b3350
commit 31afb168f8
10 changed files with 32 additions and 21 deletions

View File

@@ -4,7 +4,7 @@ using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Users
{
public class User : BaseItem
public class User : BaseEntity
{
public string MaxParentalRating { get; set; }