mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-04 06:04:39 -04:00
9 lines
125 B
C#
9 lines
125 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kyoo.Utility
|
|
{
|
|
public interface IMergable<T>
|
|
{
|
|
public T Merge(T other);
|
|
}
|
|
} |