11 lines
353 B
C#
11 lines
353 B
C#
namespace NetinaShop.Domain.Dtos.DashboardDtos;
|
|
|
|
public class HomeDashboardDto
|
|
{
|
|
public int ProductsCount { get; set; }
|
|
public int BlogsCount { get; set; }
|
|
public int TodayOrdersCount { get; set; }
|
|
public int UnSubmittedOrdersCount { get; set; }
|
|
public int BrandsCount { get; set; }
|
|
public int SubscribersCount { get; set; }
|
|
} |