init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
|||
using Kreta.BusinessLogic.HelperClasses;
|
||||
|
||||
namespace Kreta.Web.Areas.Adminisztracio.Models
|
||||
{
|
||||
public class FejlecLablecSzerkesztoModel
|
||||
{
|
||||
public FejlecLablecSzerkesztoModel()
|
||||
{
|
||||
}
|
||||
|
||||
public FejlecLablecSzerkesztoModel(IntezmenyFejlecLablecCo co)
|
||||
{
|
||||
IsFejlecOrLablecMegjelenit = co.IsFejlecOrLablecMegjelenit;
|
||||
Htmlcontent = co.HtmlContent;
|
||||
Base64Image = co.Base64Img;
|
||||
}
|
||||
|
||||
public bool IsFejlec { get; set; }
|
||||
public bool IsFejlecOrLablecMegjelenit { get; set; }
|
||||
public string Htmlcontent { get; set; }
|
||||
public string Base64Image { get; set; }
|
||||
|
||||
public IntezmenyFejlecLablecCo ToCo()
|
||||
{
|
||||
return new IntezmenyFejlecLablecCo
|
||||
{
|
||||
IsFejlecOrLablecMegjelenit = this.IsFejlecOrLablecMegjelenit,
|
||||
HtmlContent = this.Htmlcontent,
|
||||
Base64Img = this.Base64Image
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue