using MyNewProjectName.Domain.Common; namespace MyNewProjectName.Domain.Entities; /// /// Sample entity - Replace with your actual entity /// public class SampleEntity : AuditableEntity { public string Name { get; set; } = string.Empty; public string? Description { get; set; } public bool IsActive { get; set; } = true; }