using System.ComponentModel.DataAnnotations; namespace AspNetCoreMVC.Models { public class TestModel { [Required] public int Id { get; set; } [Required] [StringLength(20)] public string Name { get; set; } } public class TestViewModel { public List Names { get; set; } } }