7 lines
256 B
C#
7 lines
256 B
C#
|
|
namespace HamyanEdalat.Domain.Dtos.SmallDto;
|
|||
|
|
|
|||
|
|
public class BlogCategorySDto : BaseDto<BlogCategorySDto , BlogCategory>
|
|||
|
|
{
|
|||
|
|
public string Name { get; internal set; } = string.Empty;
|
|||
|
|
public string Description { get; internal set; } = string.Empty;
|
|||
|
|
}
|