2019-09-01 04:57:36 +01:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using Yavsc.Attributes.Validation;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Manage
|
|
|
|
|
{
|
|
|
|
|
public class SetFullNameViewModel
|
|
|
|
|
{
|
2026-03-09 02:07:09 +00:00
|
|
|
[Required]
|
2019-09-01 04:57:36 +01:00
|
|
|
[Display(Name = "Your full name"), YaStringLength(512)]
|
|
|
|
|
public string FullName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|