Files
kreta/KretaWeb/Areas/UgyfelSzolgalat/Models/BejelentesModel.cs
2024-03-13 00:33:46 +01:00

36 lines
1.3 KiB
C#

using Kreta.BusinessLogic.HelperClasses;
namespace Kreta.Web.Areas.UgyfelSzolgalat.Models
{
public class BejelentesModel : BejelentesBaseModel
{
public BejelentesModel(
string fejlec,
int requestTypeId,
int needUserAndBrowserInformation,
bool isFileUploadEnabled,
int attachmentMaxFileSizeInBytes,
string[] allowedFileExtensionArray,
string textBoxTitle,
string textAreaTitle,
string textBox,
IntezmenyCO intezmenyAdatok) : base(fejlec, requestTypeId, needUserAndBrowserInformation, isFileUploadEnabled)
{
TextBoxTitle = textBoxTitle;
TextAreaTitle = textAreaTitle;
TextBox = textBox;
IntezmenyAdatok = intezmenyAdatok;
AttachmentMaxFileSizeInBytes = attachmentMaxFileSizeInBytes;
AllowedFileExtensionArray = allowedFileExtensionArray;
}
public string TextBoxTitle { get; set; }
public string TextAreaTitle { get; set; }
public string TextBox { get; set; }
public string TextArea { get; set; }
public IntezmenyCO IntezmenyAdatok { get; set; }
public int AttachmentMaxFileSizeInBytes { get; set; }
public string[] AllowedFileExtensionArray { get; set; }
}
}