Files
constructdemo/ConstructorAppUI/ViewModels/DashboardIndexViewModel.cs
2025-05-01 15:18:30 +03:00

13 lines
334 B
C#

using ConstructorAppUI.Dtos.ContactUsDtos;
namespace ConstructorAppUI.ViewModels
{
public class DashboardIndexViewModel
{
public int ContactUsCount { get; set; }
public int ProjectCount { get; set; }
public int ReferenceCount { get; set; }
public int TestimonialCount { get; set; }
}
}