PCRB webassembly

This commit is contained in:
Chase Tucker
2024-05-13 14:33:27 -07:00
parent 9b7e3ef897
commit 89790f4fc1
50 changed files with 5466 additions and 677 deletions

View File

@ -0,0 +1,12 @@
namespace MesaFabApproval.Shared.Models;
public class PCRBAttendee {
public int ID { get; set; }
public required int PlanNumber { get; set; }
public string JobTitle { get; set; } = "";
public string Location { get; set; } = "Mesa";
public bool Attended { get; set; } = false;
public required int AttendeeID { get; set; }
public User? Attendee { get; set; }
public required int Step { get; set; }
}