LoginResult.cs 234 Bytes
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Response;

namespace Hh.Mes.Service.SystemAuth
{
    public class LoginResult :Response<string>
    {
        public string ReturnUrl;

        public UserAuthSession currentSession;
    }
}