sharp-chat/SharpChat.Common/Users/ILocalUser.cs

21 lines
518 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
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; }
}
}