using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Koogle.Domain.Enums { /// /// Specifies the available methods for calculating expenses for all unavailable persons when a day get closed. /// /// Use this enumeration to select how expenses are aggregated or evaluated in financial /// operations. The calculation method determines whether no calculation is performed, the average value is used, or /// the maximum value is selected. public enum ExpenseCalculation { None, Average, Maximum } }