aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/LoginResponse.cs
blob: bbf18fd749527cda14faff1ca8c887f7533b4920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Web.Security;

namespace Tango.FSE.Web.Messages
{
    public class LoginResponse : WebTokenResponse
    {
        public DataSource DataSource { get; set; }
        public bool PasswordChangeRequired { get; set; }
    }
}