13 lines
334 B
C#
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; }
|
|
}
|
|
}
|