kreta/Kreta.WebApi/Naplo/Kreta.Naplo.Domain/V3/Tanmenet/TanmenetListResponse.cs
2024-03-13 00:33:46 +01:00

16 lines
353 B
C#

using System;
using System.Collections.Generic;
namespace Kreta.Naplo.Domain.V3.Tanmenet
{
public class TanmenetListResponse
{
public int OsztalyCsoportId { get; set; }
public int TantargyId { get; set; }
public Guid TanarUid { get; set; }
public List<TanmenetItemListResponse> Items { get; set; }
}
}