using SharpChat.Sessions; using System; using System.Collections.Generic; namespace SharpChat.Users.Remote { public class UserBumpInfo { public IUser User { get; } public IEnumerable Sessions { get; } public UserBumpInfo(IUser user, IEnumerable sessions) { User = user ?? throw new ArgumentNullException(nameof(user)); Sessions = sessions ?? throw new ArgumentNullException(nameof(sessions)); } } }