22 lines
673 B
C#
22 lines
673 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Koogle.Domain.Enums
|
|
{
|
|
/// <summary>
|
|
/// Specifies the available methods for calculating expenses for all unavailable persons when a day get closed.
|
|
/// </summary>
|
|
/// <remarks>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.</remarks>
|
|
public enum ExpenseCalculation
|
|
{
|
|
None,
|
|
Average,
|
|
Maximum
|
|
}
|
|
}
|