Files
moadiran/Back/Data/Models/Warehouse/Receipt.cs

23 lines
666 B
C#
Raw Normal View History

2025-01-11 10:10:47 +03:30
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; }
2025-01-19 17:44:20 +03:30
public decimal Count { get; set; }
2025-01-11 10:10:47 +03:30
public string Date { get; set; }
2025-01-25 20:46:47 +03:30
public DateTime CreateDt { get; set; }
2025-01-11 10:10:47 +03:30
public bool ForSale { get; set; }
public TypeReceipt Type { get; set; }
public string info { get; set; }
2025-01-19 17:44:20 +03:30
public bool Deleted { get; set; }
public int? InvoiceID { get; set; }
2025-01-11 10:10:47 +03:30
[ForeignKey("CODID")]
public CODItem cODItem { get; set; }
}
}