EOS-WebAPI/Models/Activity/ActivityModel.cs
Nidhi Bhargava d0ac8a7790 Code Commit
2025-09-04 17:30:22 +05:30

115 lines
3.3 KiB
C#

namespace VECV_WebApi.Models.Activity
{
#region Namespaces
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
#endregion
#region Model Classes
/// <summary>
/// This class contain open ticket activity properties
/// </summary>
public class OpenTicketActivityTicketWiseModel
{
/// <summary>
/// Get or set Ticket Id
/// </summary>
public string TicketId { get; set; }
/// <summary>
/// Get or set Id
/// </summary>
public string Id { get; set; }
/// <summary>
/// Get or set Created By of open Tickets
/// </summary>
public string ActivityTicketsOpenCreatedBy { get; set; }
/// <summary>
/// Get or set Creation Time of open ticket
/// </summary>
public string ActivityTicketsOpenCreationTime { get; set; }
/// <summary>
/// Get or set remarks
/// </summary>
public string Remarks { get; set; }
/// <summary>
/// Get or set Alias of Ticket Status
/// </summary>
public string TicketStatusAlias { get; set; }
/// <summary>
/// Get or set security token value for service access
/// </summary>
public string Token { get; set; }
/// <summary>
/// Get or set status
/// </summary>
public string Status { get; set; }
/// <summary>
/// Get or set Message
/// </summary>
public string Message { get; set; }
/// <summary>
/// Get or set Utc Minute
/// </summary>
public int UtcMinute { get; set; }
}
/// <summary>
/// This class contain close ticket activity properties
/// </summary>
public class CloseTicketActivityTicketWiseModel
{
/// <summary>
/// Get or set Ticket Id
/// </summary>
public string id { get; set; }
/// <summary>
/// Get or set Ticket Id
/// </summary>
public string TicketId { get; set; }
/// <summary>
/// Get or set
/// </summary>
public string TicketsClosedId { get; set; }
/// <summary>
/// Get or set Created By of close Tickets
/// </summary>
public string ActivityTicketsCloseCreatedBy { get; set; }
/// <summary>
/// Get or set Creation Time of open ticket
/// </summary>
public string ActivityTicketsCloseCreationTime { get; set; }
/// <summary>
/// Get or set remarks
/// </summary>
public string Remarks { get; set; }
/// <summary>
/// Get or set Alias of Ticket Status
/// </summary>
public string TicketStatusAlias { get; set; }
/// <summary>
/// Get or set Get or set security token value for service access
/// </summary>
public string Token { get; set; }
/// <summary>
/// Get or set status
/// </summary>
public string Status { get; set; }
/// <summary>
/// Get or set message
/// </summary>
public string Message { get; set; }
/// <summary>
/// Get or set Utc Minute
/// </summary>
public int UtcMinute { get; set; }
}
#endregion
}