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