Coursach/Course/Contracts/ViewModels/DetailWorkshopReportViewModel.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

9 lines
221 B
C#

namespace Contracts.ViewModels
{
public class DetailWorkshopReportViewModel
{
public string DetailName { get; set; } = string.Empty;
public List<string> WorkShops { get; set; } = new();
}
}