PIbd-33_Sergunov_M.A._COP_4/Library/LibraryContracts/BindingModels/BookBindingModel.cs

16 lines
306 B
C#
Raw Normal View History

2023-11-17 09:56:34 +04:00
namespace LibraryContracts.BindingModels
{
public class BookBindingModel
{
public int? Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Genre { get; set; }
public int? Cost { get; set; }
}
}