summaryrefslogtreecommitdiff
path: root/Models/LoginModel.cs
blob: 93485c801276c7bbf5592ef2ae1cd47e151918ad (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; } = "/Bundle";
}