Coursach/Course/Contracts/ViewModels/DetailTimeReport.cs
Sergey Kozyrev 8e9e4dd321 ViewUpdate
Around the world, around the world
Around the world, around the world
Around the world, around the world
Around the world, around the world
2024-04-30 00:44:32 +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> Machines { get; set; } = new();
}
}