init
This commit is contained in:
35
KretaWeb/Areas/UgyfelSzolgalat/Models/KommunikaciosModel.cs
Normal file
35
KretaWeb/Areas/UgyfelSzolgalat/Models/KommunikaciosModel.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user