Coursach/Course/Contracts/ViewModels/DetailProductCountChartViewModel.cs
2024-05-29 22:02:05 +04:00

15 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class DetailProductCountChartViewModel
{
public string DetailName { get; set; } = string.Empty;
public int ProductCount { get; set; }
}
}