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

7 lines
162 B
C#

using System;
namespace SharpChat.Users.Remote {
public interface IUserAuthResponse : IRemoteUser {
DateTimeOffset SilencedUntil { get; }
}
}