Files
2022-10-06 16:53:07 +03:00

7 lines
242 B
C#

namespace PracticeCalendar.Domain.Common.Interfaces
{
// Apply this marker interface only to aggregate root entities
// Repositories will only work with aggregate roots, not their children
public interface IAggregateRoot { }
}