mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Add books admin page.
This commit is contained in:
14
Marechai/ViewModels/DocumentBaseViewModel.cs
Normal file
14
Marechai/ViewModels/DocumentBaseViewModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user