Files
yavsc/Yavsc/Interfaces/ICommentable.cs
2017-10-04 23:53:47 +02:00

10 lines
199 B
C#

namespace Yavsc.Interfaces
{
public interface IComment<T> : IIdentified<T>
{
T GetReceiverId();
void SetReceiverId(T rid);
string Content { get; set; }
}
}