namespace GDNXFD.Alert.Config.Model { using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; /// /// Loading Message class. /// public class UserLoginMessage { private bool isLogin; /// /// Constructor. /// /// Is loading public UserLoginMessage(bool islogin) { this.isLogin = islogin; } /// /// Is loading property. /// public bool IsLogin { get { return this.isLogin; } set { this.isLogin = value; } } } }