sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/CreateUpdateBlogPostDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

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 = [];
}
}