sharp-chat/SharpChat.Common/Users/Remote/IUserAuthResponse.cs
2022-08-30 17:05:29 +02:00

8 lines
162 B
C#

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