Api/NetinaShop.Domain/Entities/Blogs/BlogCategory.cs

8 lines
280 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
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();
}