You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mchsamples-.net-core/AlertSoftwareKit/AlertWebAPI/Models/Login.cs

23 lines
622 B

// ========================================================================
//
// Copyright (C) 2017-2018 MARC CHEVALDONNE
// marc.chevaldonne.free.fr
//
// Module : Login.cs
// Author : Marc Chevaldonné
// Creation date : 2018-02-12
//
// ========================================================================
namespace AlertWebAPI.Models
{
/// <summary>
/// POCO class for username/password couples
/// </summary>
public class Login
{
public string Username { get; set; }
public string Password { get; set; }
}
}