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,14 @@
using System;
namespace Marechai.ViewModels
{
public abstract class DocumentBaseViewModel : BaseViewModel<long>
{
public string Title { get; set; }
public string NativeTitle { get; set; }
public DateTime? Published { get; set; }
public short? CountryId { get; set; }
public string Country { get; set; }
public string Synopsis { get; set; }
}
}