using System.Collections.Generic; namespace Kreta.Web.Areas.UgyfelSzolgalat.Models { public class KommunikaciosModel { public string Status { get; set; } public string ServiceDesk { get; set; } public string IssueId { get; set; } public string IssueDescription { get; set; } public string IssueText { get; set; } public string IssueName { get; set; } public string TaskKey { get; set; } public bool IsFileUploadEnabled { get; set; } public int AttachmentMaxFileSizeInBytes { get; set; } public string[] AllowedFileExtensionArray { get; set; } public CommentsModel CommentList { get; set; } } public class CommentsModel : List { } public class CommentModel { public string Id { get; set; } public string Name { get; set; } public string Text { get; set; } public string FreandlyDate { get; set; } public string IconUrl { get; set; } } }