11 lines
365 B
C#
11 lines
365 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses.MulasztasiErtesitokCOs
|
|
{
|
|
public class TanuloMulasztasErtesitoCo
|
|
{
|
|
public MulasztasFejCo MulasztasFej { get; set; }
|
|
public List<MulasztasAdatCo> MulasztasAdatList { get; set; }
|
|
public List<GondviseloAdatokCo> GondviseloAdatokList { get; set; }
|
|
}
|
|
}
|