kreta/Kreta.WebApi/Ellenorzo/Kreta.Ellenorzo.Domain/VN/Interfaces/IModelValidacio.cs
2024-03-13 00:33:46 +01:00

11 lines
349 B
C#

using System;
using System.Collections.Generic;
namespace Kreta.Ellenorzo.Domain.VN.Interfaces
{
public interface IModelValidacio<T>
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
Dictionary<Predicate<T>, string> ModelValidaciok { get; }
}
}