mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-20 19:03:20 +08:00
8 lines
118 B
C#
8 lines
118 B
C#
namespace UglyToad.PdfPig.Core
|
|
{
|
|
internal interface IDeepCloneable<out T>
|
|
{
|
|
T DeepClone();
|
|
}
|
|
}
|