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