using BMA.EHR.Domain.Models.MetaData; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Placement.Service.Requests { public class ReportAttachmentRequest { public ReportAttachmentRequestObj[] refIds { get; set; } } public class ReportAttachmentRequestObj { public int? Sequence { get; set; } public string? CitizenId { get; set; } public string? Prefix { get; set; } public string? FirstName { get; set; } public string? LastName { get; set; } public double? amount { get; set; } public double? positionSalaryAmount { get; set; } public double? mouthSalaryAmount { get; set; } public string? RemarkHorizontal { get; set; } public string? RemarkVertical { get; set; } } }