init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user