using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UIStandardWebApi.EntityDto.ValidateRules { public abstract class BaseAbstractAttribute : Attribute { public BaseAbstractAttribute(string? messge) { Message = messge; } public string? Message { get; set; } public abstract (bool, string?) DoValidate(object oValue); } }