16 lines
306 B
C#
16 lines
306 B
C#
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; }
|
|
}
|
|
}
|