You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
550 B

using Common.Utility;
using System.ComponentModel.DataAnnotations;
namespace JMENepal.Model
{
public class CommonModel
{
[Required]
public string AGENT_CODE { get; set; } = GetStatic.ReadWebConfig("jme_agent_code", "");
[Required]
public string USER_ID { get; set; } = GetStatic.ReadWebConfig("jme_user_id", "");
[Required]
public string AGENT_SESSION_ID { get; set; }
[Required]
public string Password { get; set; } = GetStatic.ReadWebConfig("jme_password", "");
}
}