Files
moadiran/Shared/DTOs/Warehouse/ReceiptDto.cs

23 lines
595 B
C#
Raw Permalink Normal View History

2025-01-11 10:10:47 +03:30
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 ReceiptDto
{
public int? ID { get; set; }
public int CODID { get; set; }
public string? CODTitle { get; set; }
2025-01-19 17:44:20 +03:30
public decimal Count { get; set; }
2025-01-11 10:10:47 +03:30
public string Date { get; set; }
public bool ForSale { get; set; }
public TypeReceipt Type { get; set; }
public string info { get; set; }
2025-01-19 17:44:20 +03:30
public int? InvoiceID { get; set; }
2025-01-11 10:10:47 +03:30
}
}