what is DataAnnotation attribute i can use to make gander column only have one character in my table
public class Student
{
public int ID { get; set; }
[Required, MaxLength(50)]
public string Name { get; set; }
[DataType(DataType.Date)]
public DateTime Birthday { get; set; }
public char Gander { get; set; }
}