mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-11 23:55:54 -05: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);
|
|
}
|
|
} |