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