mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
6 lines
104 B
C#
6 lines
104 B
C#
namespace NadekoBot.Common;
|
|
|
|
public interface ICloneable<T> where T : new()
|
|
{
|
|
public T Clone();
|
|
} |