Files
moadiran/Shared/DTOs/Warehouse/CirculationDto.cs
mmrbnjd d14c474c6b ...
2025-01-19 17:44:20 +03:30

32 lines
822 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 decimal 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; }
}
}