8 lines
280 B
C#
8 lines
280 B
C#
|
|
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();
|
|||
|
|
}
|