Implement first four phases of medical docs roadmap
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace Media.JoshHeaps.Net.Models;
|
||||
|
||||
public class MedicalPrescriptionPickup
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long PrescriptionId { get; set; }
|
||||
public long? DocumentId { get; set; }
|
||||
public DateTime PickupDate { get; set; }
|
||||
public string? Quantity { get; set; }
|
||||
public string? Pharmacy { get; set; }
|
||||
public decimal? Cost { get; set; }
|
||||
public string? Notes { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user