mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 11:04:25 +00:00
14 lines
436 B
C#
14 lines
436 B
C#
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; }
|
|
}
|
|
} |