using System.ComponentModel.DataAnnotations; namespace xModels.Dtos { /// /// in some cases we have to validate a revision of request, this is a model /// which used to request a revision validator ... /// public class XValidateRevisionRequest { [Required] public string Revision { get; set; } } }