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

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
}