summaryrefslogtreecommitdiff
path: root/Models/LoginModel.cs
blob: 6592135e08f4355206ec89bbe6504070037fccff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.ComponentModel.DataAnnotations;

namespace MyDarling.Models;
public class LoginModel
{
    [Required]
    public string? Name { get; set; }

    [Required]
    public string? Password { get; set; }

    public string ReturnUrl { get; set; } = "/Products";
}