23 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Publication.Entites;
public class TempPrintingHouseOrders
{
public int Id { get; set; }
public string Title { get; set; }
public string Phone { get; set; }
public string Address { get; set; }
public int MaterialsId { get; set; }
public DateTime Date { get; set; }
public int OrderId { get; set; }
public int Count { get; set; }
}