Files

10 lines
159 B
C#
Raw Permalink Normal View History

2022-01-22 20:13:49 -08:00
using System.Collections.Generic;
namespace MeatKit
{
public interface IValidatable
{
Dictionary<string, BuildMessage> Validate();
}
}