Files
Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Models/LoginModel.cs
2020-06-09 21:21:37 +01:00

14 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Stock.Models
{
public class LoginModel
{
public string Email { get; set; }
public string Password { get; set; }
}
}