mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-16 18:15:48 +02:00
6 lines
151 B
C#
6 lines
151 B
C#
namespace TweetDuck.Data.Serialization{
|
|
interface ISerializedObject{
|
|
bool OnReadUnknownProperty(string property, string value);
|
|
}
|
|
}
|