mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-23 01:00:28 +03:00
7 lines
242 B
C#
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 { }
|
|
}
|