Files
mabibli/MaBibli.Shared/Entites/Statut.cs
T
Mathieu LimonierandClaude Opus 5 6a6d745af4 MaBibli 1.0.0
Gestion de bibliothèque personnelle auto-hébergée : catalogue, prêts,
scan de code-barres, consultation hors-ligne.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-22 22:36:16 +02:00

12 lines
165 B
C#

namespace MaBibli.Shared.Entites;
/// <summary>
/// Statut de lecture d'un livre.
/// </summary>
public enum Statut
{
ALire = 0,
EnCours = 1,
Lu = 2,
}