Files
marechai/Marechai.Data/Dtos/DocumentBaseViewModel.cs

13 lines
398 B
C#
Raw Normal View History

2020-08-07 01:13:30 +01:00
using System;
2025-11-13 04:05:35 +00:00
namespace Marechai.ViewModels;
public abstract class DocumentBaseViewModel : BaseViewModel<long>
2020-08-07 01:13:30 +01:00
{
2025-11-13 04:05:35 +00:00
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; }
2020-08-07 01:13:30 +01:00
}