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

15 lines
332 B
C#

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