mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 14:16:44 +01:00
15 lines
287 B
C#
15 lines
287 B
C#
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
public class User : BaseEntity
|
|
{
|
|
public string MaxParentalRating { get; set; }
|
|
|
|
public int RecentItemDays { get; set; }
|
|
|
|
public User()
|
|
{
|
|
RecentItemDays = 14;
|
|
}
|
|
}
|
|
}
|