PIAPS_CW/Contracts/BindingModels/SellBindingModel.cs

15 lines
267 B
C#
Raw Normal View History

2024-06-11 12:18:10 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class SellBindingModel
{
2024-06-20 22:32:22 +04:00
public Guid Id { get; set; }
2024-06-11 12:18:10 +04:00
public DateTime DateSell { get; set; }
}
}