19 lines
474 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LawFirmContracts.Models;
namespace LawFirmContracts.BindingModels
{
public class ItemBindingModel : IItemModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public decimal Price { get; set; }
2023-05-13 16:24:54 +04:00
public int CaseId { get; set; }
public int PaymentId { get; set; }
}
}