Skip to content

Commit

Permalink
Add struct for range of date
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryba1986 committed Jul 3, 2022
1 parent 39ffa3a commit c8a74ba
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Zeus.Models/Utilities/DateRange.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using System;

namespace Zeus.Models.Utilities
{
public readonly struct DateRange
{
public DateTime Start { get; init; }
public DateTime End { get; init; }
}
}

0 comments on commit c8a74ba

Please sign in to comment.