Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Merge branch 'feature/Year' of https://github.com/NoxOrg/Nox.Types in…
Browse files Browse the repository at this point in the history
…to feature/Year
  • Loading branch information
denisvieira-dev committed Jul 4, 2023
2 parents de50741 + 1ec5cff commit 4d2d10c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Nox.Types/Types/Year/TypeOptions/YearTypeOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ namespace Nox.Types;

public class YearTypeOptions
{
public static readonly ushort MinYearValue = 1900;
public static readonly ushort MaxYearValue = 3000;
public ushort MinValue { get; set; } = MinYearValue;
public ushort MaxValue { get; set; } = MaxYearValue;
public static readonly ushort DefaultMinValue= 1900;
public static readonly ushort DefaultMaxValue = 3000;
public ushort MinValue { get; set; } = DefaultMinValue;
public ushort MaxValue { get; set; } = DefaultMaxValue;
public bool AllowFutureOnly { get; set; } = false;
}

0 comments on commit 4d2d10c

Please sign in to comment.