File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 13
13
<Product >InterlockLedger</Product >
14
14
<RepositoryType >git</RepositoryType >
15
15
<RepositoryUrl >https://github.com/interlockledger/interlockledger-commons.git</RepositoryUrl >
16
- <Version >1.2.0 </Version >
16
+ <Version >1.2.1 </Version >
17
17
<PackageId >InterlockLedger.Commons</PackageId >
18
- <PackageReleaseNotes >Expose LimitedRange.Count </PackageReleaseNotes >
18
+ <PackageReleaseNotes >ITextual and Custom Converters </PackageReleaseNotes >
19
19
</PropertyGroup >
20
20
21
21
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
Original file line number Diff line number Diff line change 32
32
33
33
namespace System
34
34
{
35
- public interface ITextual < T > where T : new ( )
35
+ public interface ITextual
36
36
{
37
37
string TextualRepresentation { get ; }
38
+ }
38
39
40
+ public interface ITextual < T > : ITextual where T : new ( )
41
+ {
39
42
T ResolveFrom ( string textualRepresentation ) ;
40
43
}
41
44
}
You can’t perform that action at this time.
0 commit comments