We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95458fb commit cf62006Copy full SHA for cf62006
src/Vivarni.DDD.Core/IEntityWithDomainEvents.cs
@@ -1,4 +1,5 @@
1
-using System.Collections.Generic;
+using System;
2
+using System.Collections.Generic;
3
4
namespace Vivarni.DDD.Core
5
{
@@ -21,5 +22,6 @@ public interface IEntityWithDomainEvents
21
22
/// database. Such a mechanism is provided in <c>Vivarni.Domain.Infrastructure</c>.
23
/// </summary>
24
/// <seealso href="https://github.com/vivarni/vivarni.domain"/>
25
+ [Obsolete("Replace the usage of this generic interface with the non-generic variant. Will be removed in future releases.")]
26
public interface IEntityWithDomainEvents<TId> : IEntityWithDomainEvents { }
27
}
0 commit comments