mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 03:16:11 +00:00
Changing DateTime to DateTimeOffset...
because it's what it should have been all along.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user