Added training reminder worker
This commit is contained in:
12
FabApprovalWorkerService/Models/TrainingAssignment.cs
Normal file
12
FabApprovalWorkerService/Models/TrainingAssignment.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Dapper.Contrib.Extensions;
|
||||
|
||||
namespace FabApprovalWorkerService.Models;
|
||||
[Table("TrainingAssignment")]
|
||||
public class TrainingAssignment {
|
||||
[Key]
|
||||
public int ID { get; set; }
|
||||
public int TrainingID { get; set; }
|
||||
public bool Status { get; set; } = false;
|
||||
public bool Deleted { get; set; } = false;
|
||||
public DateTime DeletedDate { get; set; }
|
||||
}
|
Reference in New Issue
Block a user