14 lines
358 B
C#
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; }
|
|
} |