12 lines
376 B
C#
12 lines
376 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Get.Tanmenet
|
|
{
|
|
public class TanmenetGetResponseCo
|
|
{
|
|
public int OsztalyCsoportId { get; set; }
|
|
public int TantargyId { get; set; }
|
|
public int FeltoltoTanarId { get; set; }
|
|
public List<TanmenetItemGetResponseCo> Items { get; set; }
|
|
}
|
|
}
|