initial commit

This commit is contained in:
2026-07-21 14:41:46 +07:00
commit 1bfa3dd1c2
1159 changed files with 88228 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
using Indotalent.Data.Enums;
namespace Indotalent.Data.Entities;
public class ProgramManager : BaseEntity, IHasAutoNumber
{
public string? Title { get; set; }
public string? AutoNumber { get; set; }
public string? Summary { get; set; }
public ProgramManagerStatus Status { get; set; }
public ProgramManagerPriority Priority { get; set; }
public string? ProgramManagerResourceId { get; set; }
public ProgramManagerResource? ProgramManagerResource { get; set; }
}