mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
8 lines
126 B
C#
8 lines
126 B
C#
#nullable disable
|
|
namespace NadekoBot.Common;
|
|
|
|
public interface ICloneable<T>
|
|
where T : new()
|
|
{
|
|
public T Clone();
|
|
} |