5 lines
94 B
C#
5 lines
94 B
C#
|
public interface ISubscriber
|
||
|
{
|
||
|
string Name { get; }
|
||
|
void Update(IPublisher subject);
|
||
|
}
|