Epiworx.Data.UserData.UserData C# (CSharp) Method

UserData() public method

public UserData ( ) : System
return System
        public UserData()
        {
            this.UserId = 0;
            this.Email = string.Empty;
            this.FullName = string.Empty;
            this.IsActive = false;
            this.IsArchived = false;
            this.Name = string.Empty;
            this.Password = string.Empty;
            this.Salt = string.Empty;
            this.Token = string.Empty;
            this.TokenExpirationDate = DateTime.MaxValue;
            this.CreatedDate = DateTime.MaxValue;
            this.ModifiedDate = DateTime.MaxValue;
        }
UserData