Files
moadiran/Back/Data/Models/Warehouse/Receipt.cs
mmrbnjd d14c474c6b ...
2025-01-19 17:44:20 +03:30

22 lines
619 B
C#

using Shared.Enums;
using System.ComponentModel.DataAnnotations.Schema;
namespace Back.Data.Models.Warehouse
{
//رسید
public class Receipt
{
public int ID { get; set; }
public int CODID { get; set; }
public decimal Count { get; set; }
public string Date { get; set; }
public bool ForSale { get; set; }
public TypeReceipt Type { get; set; }
public string info { get; set; }
public bool Deleted { get; set; }
public int? InvoiceID { get; set; }
[ForeignKey("CODID")]
public CODItem cODItem { get; set; }
}
}