6 lines
74 B
C#
6 lines
74 B
C#
|
namespace SharpChat;
|
||
|
|
||
|
public interface Diff {
|
||
|
bool Changed { get; }
|
||
|
}
|