12 lines
345 B
C#
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; }
|
|
}
|
|
}
|