23 lines
659 B
C#
23 lines
659 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Dto.Maintenance
|
|
{
|
|
public class InventoryDto
|
|
{
|
|
public Guid InventoryId { get; set; }
|
|
public int DoctorId { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? UpdatedBy { get; set; }
|
|
public string? UserRole { get; set; }
|
|
public int QtyOut { get; set; }
|
|
public int QtyBalance { get; set; }
|
|
public byte CycleMonth { get; set; }
|
|
public int CycleYear { get; set; }
|
|
public DateTime UpdatedDate { get; set; }
|
|
}
|
|
}
|