yavsc/YavscLib/IBlackListed.cs

9 lines
174 B
C#

namespace YavscLib
{
public interface IBlackListed
{
long Id { get; set; }
string UserId { get; set; }
string OwnerId { get; set; }
}
}