aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Web/LoginResponse.cs
blob: 3515c32d11b0398db5c262677d3f87bc6375556e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Transport.Web;
using Tango.Web.Security;

namespace Tango.MachineStudio.Common.Web
{
    public class LoginResponse : WebTokenResponse
    {
        public DataSource DataSource { get; set; }
        public bool VersionChangeRequired { get; set; }
        public String RequiredVersion { get; set; }
        public bool PasswordChangeRequired { get; set; }
    }
}