Changing DateTime to DateTimeOffset...

because it's what it should have been all along.
This commit is contained in:
Peter MacNaughton
2014-01-10 18:03:22 -07:00
parent 41704d70a9
commit c89f8aa01d
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -39,12 +39,12 @@ namespace Octokit
/// <summary>
/// The date and time that the status was created.
/// </summary>
public DateTime CreatedAt { get; set; }
public DateTimeOffset CreatedAt { get; set; }
/// <summary>
/// The date and time that the status was updated.
/// </summary>
public DateTime UpdatedAt { get; set; }
public DateTimeOffset UpdatedAt { get; set; }
/// <summary>
/// A short description of the status.
+2 -2
View File
@@ -32,12 +32,12 @@ namespace Octokit
/// <summary>
/// Date and time that the deployment was created.
/// </summary>
public DateTime CreatedAt { get; set; }
public DateTimeOffset CreatedAt { get; set; }
/// <summary>
/// Date and time that the deployment was updated.
/// </summary>
public DateTime UpdatedAt { get; set; }
public DateTimeOffset UpdatedAt { get; set; }
/// <summary>
/// A short description of the deployment.