blob: 288a267688c2980499f9b9c536e25d88a2b7f118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.FSE.Web.Messages;
namespace Tango.FSE.BL.CacheEntities
{
/// <summary>
/// Represents a cached authentication login response.
/// </summary>
public class CachedLoginResponse
{
public LoginResponse Response { get; set; }
public String Email { get; set; }
public String Password { get; set; }
}
}
|