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

21 lines
518 B
C#

using System;
namespace SharpChat.Users {
public interface ILocalUser : IUser, IEquatable<ILocalUser> {
/// <summary>
/// Temporary alternate display name for the user
/// </summary>
string NickName { get; }
/// <summary>
/// Current presence status of the user
/// </summary>
UserStatus Status { get; }
/// <summary>
/// Current presence message of the user
/// </summary>
string StatusMessage { get; }
}
}