22 lines
559 B
C#
22 lines
559 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 decimal Count { get; set; }
|
|
public string Date { get; set; }
|
|
public TypeRemittance Type { get; set; }
|
|
public string info { get; set; }
|
|
public int? InvoiceID { get; set; }
|
|
}
|
|
}
|