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