21 lines
518 B
C#
21 lines
518 B
C#
namespace Kreta.Web.Areas.Intezmeny.Models
|
|
{
|
|
public class IntezmenyInfoModel
|
|
{
|
|
public Info info { get; set; }
|
|
|
|
public class Info
|
|
{
|
|
public IntezmenyModel intezmenyInfoModel { get; set; }
|
|
public Info(IntezmenyModel intezmenyModel)
|
|
{
|
|
intezmenyInfoModel = intezmenyModel;
|
|
}
|
|
}
|
|
|
|
public IntezmenyInfoModel(IntezmenyModel intezmenyModel)
|
|
{
|
|
info = new Info(intezmenyModel);
|
|
}
|
|
}
|
|
}
|