11 lines
349 B
C#
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; }
|
|
}
|
|
}
|