32 lines
611 B
C#
32 lines
611 B
C#
|
|
|
|
namespace VECV_WebApi.Models.LogOn
|
|
{
|
|
#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 LogonModel
|
|
{
|
|
/// <summary>
|
|
/// Get or set Ticket Id
|
|
/// </summary>
|
|
public string Username { get; set; }
|
|
/// <summary>
|
|
/// Get or set Id
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
|
|
}
|
|
#endregion
|
|
} |