32 lines
818 B
C#
32 lines
818 B
C#
![]() |
using Shared.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Shared.DTOs.Warehouse
|
|||
|
{
|
|||
|
public enum TypeCirculation
|
|||
|
{
|
|||
|
[Display(Name = "رسید")]
|
|||
|
Receipt,
|
|||
|
|
|||
|
[Display(Name = "حواله")]
|
|||
|
Remittance
|
|||
|
}
|
|||
|
public class CirculationDto
|
|||
|
{
|
|||
|
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 string ModelTypeTitle { get; set; }
|
|||
|
public int ModelTypeID { get; set; }
|
|||
|
public string info { get; set; }
|
|||
|
public TypeCirculation Type { get; set; }
|
|||
|
}
|
|||
|
}
|