Moved some entities to the main project

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-10 21:34:02 -04:00
parent b1df61f7ce
commit 2467ca9668
73 changed files with 212 additions and 190 deletions

View File

@@ -0,0 +1,21 @@
using System;
namespace MediaBrowser.Controller.Entities
{
public class User : BaseEntity
{
public string Password { get; set; }
public string MaxParentalRating { get; set; }
public int RecentItemDays { get; set; }
public User()
{
RecentItemDays = 14;
}
public DateTime? LastLoginDate { get; set; }
public DateTime? LastActivityDate { get; set; }
}
}