OpenAuth.Net/OpenAuth.App/DTO/LoginResponse.cs

14 lines
263 B
C#
Raw Normal View History

2015-04-25 12:31:01 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenAuth.App.DTO
{
public class LoginResponse : Response
{
public string UserId { get; set; }
public string UserName { get; set; }
}
}