10 lines
199 B
C#
10 lines
199 B
C#
namespace Yavsc.Interfaces
|
|
{
|
|
public interface IComment<T> : IIdentified<T>
|
|
{
|
|
T GetReceiverId();
|
|
void SetReceiverId(T rid);
|
|
string Content { get; set; }
|
|
|
|
}
|
|
} |