api/NetinaCMS.Domain/Dtos/SmallDto/BlogCategorySDto.cs

9 lines
293 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
using NetinaCMS.Domain.Entities.Blogs;
namespace NetinaCMS.Domain.Dtos.SmallDto;
2024-03-09 19:53:01 +03:30
public class BlogCategorySDto : BaseDto<BlogCategorySDto , BlogCategory>
{
public string Name { get; internal set; } = string.Empty;
public string Description { get; internal set; } = string.Empty;
}