27 lines
708 B
C#
27 lines
708 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 status of a person's expense, indicating whether it is open or completed.
|
|
/// </summary>
|
|
/// <remarks>Use <see cref="PersonExpenseStatus.Open"/> to represent expenses that are still pending or
|
|
/// require action. Use <see cref="PersonExpenseStatus.Done"/> to represent expenses that have been finalized or
|
|
/// settled.</remarks>
|
|
public enum PersonExpenseStatus
|
|
{
|
|
/// <summary>
|
|
/// Expense is open
|
|
/// </summary>
|
|
Open,
|
|
/// <summary>
|
|
/// Marks the expense as completed.
|
|
/// </summary>
|
|
Done
|
|
}
|
|
|