mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
9 lines
243 B
C#
9 lines
243 B
C#
using System;
|
|
|
|
namespace TweetDuck.Data.Serialization{
|
|
interface ITypeConverter{
|
|
bool TryWriteType(Type type, object value, out string converted);
|
|
bool TryReadType(Type type, string value, out object converted);
|
|
}
|
|
}
|