init
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace Kreta.Naplo.Domain.V3.Tanmenet
|
||||
{
|
||||
public class TanmenetItemListResponse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Tema { get; set; }
|
||||
|
||||
public int EvesOraszam { get; set; }
|
||||
}
|
||||
}
|
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Kreta.Naplo.Domain.V3.Tanmenet
|
||||
{
|
||||
public class TanmenetRequest
|
||||
{
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
public int TantargyId { get; set; }
|
||||
|
||||
public Guid TanarUid { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user