initial commit

This commit is contained in:
2026-07-21 14:35:37 +07:00
commit 0027997ff9
798 changed files with 59083 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using Indotalent.Data.Interfaces;
using Indotalent.Shared.Utils;
using System.ComponentModel.DataAnnotations;
namespace Indotalent.Data.Abstracts;
public abstract class BaseEntity : IHasAudit, IHasIsDeleted
{
[Key]
public string Id { get; set; } = SequentialGuidGenerator.NewSequentialId();
public DateTimeOffset? CreatedAt { get; set; }
public string? CreatedBy { get; set; }
public DateTimeOffset? UpdatedAt { get; set; }
public string? UpdatedBy { get; set; }
public bool IsDeleted { get; set; } = false;
}