Meeting.Demo/Demo.Common/Dtos/LoginApiResponse.cs

19 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Common.Dtos
{
public class LoginApiResponse
{
public string token { get; set; }
public string refresh_token { get; set; }
public string userName { get; set; }
public int expire { get; set; }
public string uid { get; set; }
}
}