mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(dir): ♻ mark some domain prop inits as private
This commit is contained in:
parent
900a0a72f3
commit
8759f782b3
2 changed files with 6 additions and 6 deletions
|
|
@ -8,9 +8,9 @@ private FilterListChange()
|
|||
{
|
||||
}
|
||||
|
||||
public FilterList? Current { get; init; }
|
||||
public FilterList? Before { get; init; }
|
||||
public FilterList? After { get; init; }
|
||||
public FilterList? Current { get; private init; }
|
||||
public FilterList? Before { get; private init; }
|
||||
public FilterList? After { get; private init; }
|
||||
|
||||
public static FilterListChange Create(string? reason)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
public interface IChange<TAggregate> where TAggregate : AggregateRoot
|
||||
{
|
||||
TAggregate? Current { get; init; }
|
||||
TAggregate? Before { get; init; }
|
||||
TAggregate? After { get; init; }
|
||||
TAggregate? Current { get; }
|
||||
TAggregate? Before { get; }
|
||||
TAggregate? After { get; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue