Coursach/Course/Contracts/ViewModels/DetailTimeReport.cs
2024-04-30 20:24:53 +04:00

16 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class DetailTimeReport
{
public string DetailName { get; set; } = string.Empty;
public List<string> Productions { get; set; } = new();
public List<string> Products { get; set; } = new();
}
}