Initial Commit ...

This commit is contained in:
2024-01-25 04:37:38 +03:30
commit c5d69522a9
26 changed files with 1252 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace xModels.Dtos {
/// <summary>
/// in some cases we have to validate a revision of request, this is a model
/// which used to request a revision validator ...
/// </summary>
public class XValidateRevisionRequest {
[Required]
public string Revision { get; set; }
}
}