Skip to content

Commit

Permalink
Change type for date to be DateOnly.
Browse files Browse the repository at this point in the history
  • Loading branch information
eminmesic authored and Jericho committed Oct 10, 2024
1 parent 7c9b3df commit aaa6ed7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/ZoomNet/Models/DailyUsageSummary.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System;
using System.Text.Json.Serialization;

namespace ZoomNet.Models
Expand All @@ -9,7 +10,7 @@ public class DailyUsageSummary
{
/// <summary>Gets or sets the date.</summary>
[JsonPropertyName("date")]
public string Date { get; set; }
public DateOnly Date { get; set; }

/// <summary>Gets or sets number of meeting minutes.</summary>
[JsonPropertyName("meeting_minutes")]
Expand Down

0 comments on commit aaa6ed7

Please sign in to comment.