Files
cms_thermo_active/Step.Model/LoginViewModel.cs
T
2017-11-16 15:23:53 +01:00

16 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model
{
public class LoginViewModel
{
public string Username { get; set; }
public string Password { get; set; }
}
}