sharp-chat/SharpChat.Common/Users/Remote/UserAuthRequest.cs
2022-08-30 17:05:29 +02:00

21 lines
532 B
C#

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;
}
}
}