using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
using System.Text; | |
namespace OfficeOpenXml.FormulaParsing.Excel.Functions.DateTime.Workdays | |
{ | |
public enum WorkdayCalculationDirection | |
{ | |
Forward = 1, | |
Backward = -1 | |
} | |
} |