Files
2022-01-22 20:13:49 -08:00

10 lines
159 B
C#

using System.Collections.Generic;
namespace MeatKit
{
public interface IValidatable
{
Dictionary<string, BuildMessage> Validate();
}
}