aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils/Web/LoginRequest.cs
blob: e06281a5b3d04ce1afb6860fb995f72c7b0aa112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Tango.AzureUtils.Web
{
    public class LoginRequest
    {
        public String Email { get; set; }
        public String Password { get; set; }
    }
}