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

namespace Tango.MachineStudio.Common.Web
{
    public class LoginRequest : WebRequestMessage
    {
        public String Version { get; set; }
        public String Email { get; set; }
        public String Password { get; set; }
        public LoginMethod Method { get; set; }
    }
}