10 lines
294 B
C#
10 lines
294 B
C#
namespace QRRapidoApp.Models.DTOs
|
|
{
|
|
public class UserRequesterContext
|
|
{
|
|
public string? UserId { get; set; }
|
|
public string? IpAddress { get; set; }
|
|
public string? DeviceId { get; set; }
|
|
public bool IsAuthenticated => !string.IsNullOrEmpty(UserId);
|
|
}
|
|
} |