Coursach/Course/Contracts/ViewModels/DetailWorkshopReportViewModel.cs

9 lines
221 B
C#
Raw Normal View History

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