summaryrefslogtreecommitdiff
path: root/src/domain/Month.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/domain/Month.cs')
-rw-r--r--src/domain/Month.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/domain/Month.cs b/src/domain/Month.cs
index 6bc9359..92b82f3 100644
--- a/src/domain/Month.cs
+++ b/src/domain/Month.cs
@@ -5,6 +5,7 @@ namespace domain
public class Month : IComparable<Month>, IIncrementable<Month>
{
DateTime date;
+ public static readonly Month Infinity = new Month(2099, 12);
public Month(int year, int month)
{