Files
Moonlight/Moonlight/App/Models/Forms/NameModel.cs
2023-04-03 21:22:54 +02:00

14 lines
358 B
C#

using System.ComponentModel.DataAnnotations;
namespace Moonlight.App.Models.Forms;
public class NameModel
{
[Required]
[MinLength(2, ErrorMessage = "Do you think, that works?")]
public string FirstName { get; set; }
[Required]
[MinLength(2, ErrorMessage = "Do you think, that works?")]
public string LastName { get; set; }
}