21 lines
518 B
C#
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; }
|
|||
|
}
|
|||
|
}
|