Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehmetalierol/b59464b2e790cde76e84d1f441dd1744 to your computer and use it in GitHub Desktop.
Save mehmetalierol/b59464b2e790cde76e84d1f441dd1744 to your computer and use it in GitHub Desktop.
using System.ComponentModel.DataAnnotations;
namespace Company.Application.WebApi.VM
{
/// <summary>
/// Login için kullanıcıdan istenen bilgileri taşır
/// </summary>
public class LoginModel
{
/// <summary>
/// Email alanı zorunludur
/// </summary>
[Required]
public string Email { get; set; }
/// <summary>
/// Parola alanı zorunludur
/// </summary>
[Required]
public string Password { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment