mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 11:01:27 +03:00
9 lines
216 B
C#
9 lines
216 B
C#
namespace PracticeCalendar.Domain.Common
|
|
{
|
|
public class DomainEventBase
|
|
{
|
|
public DateTime EventDate { get; protected set; } = DateTime.UtcNow;
|
|
public bool IsPublished { get; set; }
|
|
}
|
|
}
|