8 lines
162 B
C#
8 lines
162 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpChat.Users.Remote {
|
|||
|
public interface IUserAuthResponse : IRemoteUser {
|
|||
|
DateTimeOffset SilencedUntil { get; }
|
|||
|
}
|
|||
|
}
|