24 lines
647 B
C#
24 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Sozsoft.Platform.Public;
|
|
|
|
public class CreateUpdateBlogPostDto
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Slug { get; set; }
|
|
public string ContentTr { get; set; }
|
|
public string ContentEn { get; set; }
|
|
public string Summary { get; set; }
|
|
public string ReadTime { get; set; }
|
|
public string CoverImage { get; set; }
|
|
public Guid CategoryId { get; set; }
|
|
public List<string> Tags { get; set; }
|
|
public bool IsPublished { get; set; }
|
|
|
|
public CreateUpdateBlogPostDto()
|
|
{
|
|
Tags = [];
|
|
}
|
|
}
|