10 lines
199 B
C#
10 lines
199 B
C#
|
|
namespace Contracts.ViewModels
|
|
{
|
|
public class WorkerProductReportViewModel
|
|
{
|
|
public string WorkerName { get; set; } = string.Empty;
|
|
public List<string> Products { get; set; } = new();
|
|
}
|
|
}
|