mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
20 lines
449 B
C#
20 lines
449 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Common;
|
|
|
|
public abstract class EntityBase
|
|
{
|
|
[BsonId]
|
|
public ObjectId Id { get; set; }
|
|
|
|
public ObjectId CreatedById { get; set; }
|
|
|
|
public DateTime CreatedDateUtc { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
public ObjectId? LastModifiedById { get; set; }
|
|
|
|
public DateTime? LastModifiedDateUtc { get; set; }
|
|
} |