When debugging only app.Services.GetRequiredService<IPCRBService>(); Injected AppSettings instead of using GetEnvironmentVariable at Services level Get ready to use VSCode IDE
9 lines
329 B
C#
9 lines
329 B
C#
namespace MesaFabApproval.Shared.Models;
|
|
|
|
public class MRBActionAttachment {
|
|
public required int AttachmentID { get; set; }
|
|
public required int ActionID { get; set; }
|
|
public required string FileName { get; set; }
|
|
public required DateTime UploadDate { get; set; }
|
|
public required string Path { get; set; }
|
|
} |