2024-03-31 01:33:17 +03:30
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Shared.DTOs
|
|
|
|
|
{
|
|
|
|
|
public class BlogDto
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string? Photo { get; set; }
|
|
|
|
|
public string Date { get; set; }
|
|
|
|
|
}
|
|
|
|
|
public class BlogDtoFull
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
2024-11-20 12:10:17 +03:30
|
|
|
|
public string PageTitle { get; set; }
|
2024-03-31 01:33:17 +03:30
|
|
|
|
public string Text { get; set; }
|
|
|
|
|
public string? Photo { get; set; }
|
|
|
|
|
public string Date { get; set; }
|
2024-09-16 17:36:28 +03:30
|
|
|
|
public string Time { get; set; }
|
|
|
|
|
public string? Tags { get; set; }
|
2024-11-16 15:08:18 +03:30
|
|
|
|
public string? DescriptionTag { get; set; }
|
|
|
|
|
public string? keywordsTag { get; set; }
|
2024-03-31 01:33:17 +03:30
|
|
|
|
}
|
|
|
|
|
}
|