Add books admin page.

This commit is contained in:
2020-08-07 01:13:30 +01:00
parent e3f2557796
commit 8c2b355646
15 changed files with 1225 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
namespace Marechai.ViewModels
{
public class BookViewModel : DocumentBaseViewModel
{
public string Isbn { get; set; }
public short? Pages { get; set; }
public int? Edition { get; set; }
public long? PreviousId { get; set; }
public long? SourceId { get; set; }
}
}