mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(dir): ♻ lint IChangeAggregate<T>
This commit is contained in:
parent
b431dc0f41
commit
06559303e9
2 changed files with 6 additions and 7 deletions
|
|
@ -1,3 +0,0 @@
|
|||
namespace FilterLists.Directory.Domain.Aggregates;
|
||||
|
||||
public abstract class AggregateRootCore { }
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
namespace FilterLists.Directory.Domain.Aggregates.Changes;
|
||||
using FilterLists.SharedKernel.Domain.SeedWork;
|
||||
|
||||
public interface IChangeAggregate<out TAggregateRecord>
|
||||
namespace FilterLists.Directory.Domain.Aggregates.Changes;
|
||||
|
||||
public interface IChangeAggregate<out TAggregateValueObject> where TAggregateValueObject : ValueObject
|
||||
{
|
||||
TAggregateRecord? Before { get; }
|
||||
TAggregateRecord? After { get; }
|
||||
TAggregateValueObject? Before { get; }
|
||||
TAggregateValueObject? After { get; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue