elliebot/src/EllieBot/_common/ICloneable.cs
Toastie 547aa8b34d
Added common files
This took way too long
2024-06-18 23:44:07 +12:00

8 lines
No EOL
125 B
C#

#nullable disable
namespace EllieBot.Common;
public interface ICloneable<T>
where T : new()
{
public T Clone();
}