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 person's expense, indicating whether it is open or completed.
///
/// Use to represent expenses that are still pending or
/// require action. Use to represent expenses that have been finalized or
/// settled.
public enum PersonExpenseStatus
{
///
/// Expense is open
///
Open,
///
/// Marks the expense as completed.
///
Done
}