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

8 lines
162 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using System;
namespace SharpChat.Users.Remote {
public interface IUserAuthResponse : IRemoteUser {
DateTimeOffset SilencedUntil { get; }
}
}