using System.Collections.Generic; namespace Kyoo.Utility { public interface IMergable { public T Merge(T other); } }