2024-04-30 00:44:32 +04:00
|
|
|
|
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();
|
2024-04-30 20:24:53 +04:00
|
|
|
|
public List<string> Products { get; set; } = new();
|
2024-04-30 00:44:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|