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

7 lines
129 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
using System;
namespace SharpChat.Users.Remote {
public interface IRemoteUser : IUser, IEquatable<IRemoteUser> {
}
}