sharp-chat/SharpChat.Common/Users/Remote/UserAuthRequest.cs

21 lines
532 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace SharpChat.Users.Remote {
public class UserAuthRequest {
public long UserId { get; }
public string Token { get; }
public IPAddress RemoteAddress { get; }
public UserAuthRequest(long userId, string token, IPAddress remoteAddress) {
UserId = userId;
Token = token;
RemoteAddress = remoteAddress;
}
}
}