Files
kreta/Kreta.WebApi/Naplo/Kreta.Naplo.Domain/V3/Interfaces/IModelValidacio.cs
T
2024-03-13 00:33:46 +01:00

12 lines
345 B
C#

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