namespace VECV_WebApi.Models.Authorization
{
#region Namespaces
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
#endregion
#region Model Classes
///
/// This class contain authetication properties
///
public class AutheticateModel
{
///
/// Get or set authentication status
///
public string Status { get; set; }
///
/// Get or set authetication message
///
public string Message { get; set; }
}
#endregion
}