9 lines
240 B
C#
9 lines
240 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
public class ChangedGroupedViewModel
|
|
{
|
|
public string GroupName { get; set; }
|
|
public List<string> EmployeeName { get; set; }
|
|
} |