Coursach/Course/Contracts/ViewModels/DetailProductCountChartViewModel.cs

15 lines
326 B
C#
Raw Normal View History

2024-05-29 22:02:05 +04:00
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; }
}
}