15 lines
350 B
C#
15 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractAmendmentWorkshopsResponse
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<InstitutionContractAmendmentTempWorkshopViewModel> Workshops { get; set; }
|
|
|
|
public Guid TempId { get; set; }
|
|
|
|
} |