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