|
namespace NetinaShop.Domain.Entities.Blogs;
|
|
|
|
public class BlogCategory : ApiEntity
|
|
{
|
|
public string Name { get; internal set; } = string.Empty;
|
|
public string Description { get; internal set; } = string.Empty;
|
|
public List<Blog> Blogs { get; internal set; } = new();
|
|
} |