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

35 lines
1,023 B
C#

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<CommentModel>
{
}
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; }
}
}