initial commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user