Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehmetalierol/b680709445e133531a5bac4b8b69a3ad to your computer and use it in GitHub Desktop.
Save mehmetalierol/b680709445e133531a5bac4b8b69a3ad to your computer and use it in GitHub Desktop.
using Company.Application.Dto;
namespace Company.Application.WebApi.VM
{
/// <summary>
/// Kullanıcıya geri döneceğimiz token bilgilerini taşıyacak
/// </summary>
public class TokenModel
{
/// <summary>
/// Object türünden token
/// </summary>
public object Token { get; set; }
/// <summary>
/// Kullanıcının diğer bilgileri
/// </summary>
public ApplicationUserDto UserDto { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment