namespace ProjectLibrary.Entities.Enums { public enum BookStatus { None = 0, Available = 1, CheckedOut = 2, Reserved = 3, Lost = 4 } }