When debugging only app.Services.GetRequiredService<IPCRBService>(); Injected AppSettings instead of using GetEnvironmentVariable at Services level Get ready to use VSCode IDE
13 lines
442 B
C#
13 lines
442 B
C#
using Microsoft.AspNetCore.Components.Forms;
|
|
|
|
namespace MesaFabApproval.Shared.Models;
|
|
|
|
public class MRBAttachment {
|
|
public int AttachmentID { get; set; }
|
|
public required int MRBNumber { get; set; }
|
|
public required string FileName { get; set; }
|
|
public required int UserID { get; set; }
|
|
public required DateTime UploadDate { get; set; }
|
|
public string? Path { get; set; }
|
|
public IBrowserFile? File { get; set; }
|
|
} |