aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Session/AuthenticationRequest.cs
blob: 685ca3bddcd3523b02a347161f78355a299abd61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

namespace MediaBrowser.Controller.Session
{
    public class AuthenticationRequest
    {
        public string Username { get; set; }

        public Guid UserId { get; set; }

        public string Password { get; set; }

        public string PasswordSha1 { get; set; }

        public string App { get; set; }

        public string AppVersion { get; set; }

        public string DeviceId { get; set; }

        public string DeviceName { get; set; }

        public string RemoteEndPoint { get; set; }
    }
}