21 lines
510 B
C#
21 lines
510 B
C#
![]() |
using Shared.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Shared.DTOs.Warehouse
|
|||
|
{
|
|||
|
public class RemittanceDto
|
|||
|
{
|
|||
|
public int? ID { get; set; }
|
|||
|
public int CODID { get; set; }
|
|||
|
public string CODTitle { get; set; }
|
|||
|
public int Count { get; set; }
|
|||
|
public string Date { get; set; }
|
|||
|
public TypeRemittance Type { get; set; }
|
|||
|
public string info { get; set; }
|
|||
|
}
|
|||
|
}
|