16 lines
353 B
C#
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; }
|
|
}
|
|
}
|