Никита Чернышов 47fe6a23a9 some fixes
2023-05-13 16:24:54 +04:00

19 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LawFirmContracts.Models;
namespace LawFirmContracts.BindingModels
{
public class PaymentBindingModel : IPaymentModel
{
public int Id { get; set; }
public DateTime DatePayment { get; set; }
public decimal Sum { get; set; }
public int CaseId { get; set; }
public int CaseServiceId { get; set; }
}
}