using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Koogle.Domain.Enums;
///
/// Specifies the status of a day
///
/// Use to represent the current state of a day in processes such as task
/// management, event scheduling, or workflow tracking. The available values indicate whether a day is newly created, in
/// progress, postponed, or completed.
public enum DayStatus
{
///
/// Day is newly created
///
New,
///
/// Indicates that the day has started but is not yet complete.
///
Started,
///
/// Indicates that the day has left, but not yet closed.
///
Postponed,
///
/// Specifies that the day closed, expenses has been calculated and no further changes are expected.
///
Closed
}