aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/User.cs
blob: 3c6117fca84fde7199ca96cc29db14bdaeb0c6fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

namespace MediaBrowser.Model.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; }
    }
}