I want to add validation to my date property to my class in my c# class.
public class Item
{
[Required]
public DateTime RecDate { get; set; }
}
But RecDate property sholud only accept the format "yyyyDDmm". For example 20211709.
If type another format, it should return error when I validate the Item object.
How can I set the validation format?