models
This commit is contained in:
31
Shared/DTOs/Warehouse/CirculationDto.cs
Normal file
31
Shared/DTOs/Warehouse/CirculationDto.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user