mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
7 lines
147 B
C#
7 lines
147 B
C#
namespace MyMediaCollection.Interfaces
|
|
{
|
|
public interface IValidatable
|
|
{
|
|
void Validate(string memberName, object value);
|
|
}
|
|
} |