-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28a8593
commit 1c62c3d
Showing
2 changed files
with
150 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
namespace RestSharp.Tests.Serializers.Csv { | ||
internal class TestObject { | ||
public string StringValue { get; set; } | ||
public int Int32Value { get; set; } | ||
public decimal DecimalValue { get; set; } | ||
public double DoubleValue { get; set; } | ||
public float SingleValue { get; set; } | ||
public DateTime DateTimeValue { get; set; } | ||
public TimeSpan TimeSpanValue { get; set; } | ||
} | ||
namespace RestSharp.Tests.Serializers.Csv; | ||
|
||
class TestObject { | ||
public string StringValue { get; set; } | ||
public int Int32Value { get; set; } | ||
public decimal DecimalValue { get; set; } | ||
public double DoubleValue { get; set; } | ||
public float SingleValue { get; set; } | ||
public DateTime DateTimeValue { get; set; } | ||
public TimeSpan TimeSpanValue { get; set; } | ||
} |