8 lines
130 B
C#
8 lines
130 B
C#
namespace audit_logs.Services.Interfaces;
|
|
|
|
public interface IDeepCopyService
|
|
{
|
|
Task<T> DeepCopyAsync<T>(T source);
|
|
|
|
|
|
} |