models
This commit is contained in:
21
Shared/DTOs/Warehouse/ReceiptDto.cs
Normal file
21
Shared/DTOs/Warehouse/ReceiptDto.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
public int Count { get; set; }
|
||||
public string Date { get; set; }
|
||||
public bool ForSale { get; set; }
|
||||
public TypeReceipt Type { get; set; }
|
||||
public string info { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user