mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 17:24:46 +03:00
Moved some entities to the main project
This commit is contained in:
parent
b1df61f7ce
commit
2467ca9668
21
MediaBrowser.Controller/Entities/User.cs
Normal file
21
MediaBrowser.Controller/Entities/User.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user