14 lines
No EOL
409 B
C#
14 lines
No EOL
409 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Insignia.Service.Requests
|
|
{
|
|
public class ImportInvoiceRequest
|
|
{
|
|
public string? CitizanId { get; set; }
|
|
public string? Number { get; set; }
|
|
public DateTime? DatePayment { get; set; }
|
|
public string? TypePayment { get; set; }
|
|
public string? Address { get; set; }
|
|
}
|
|
} |