namespace iiie.Logs.DBO { /// /// Result of an operation /// public enum ResultStatus { /// /// Operation is successfull /// Success, /// /// User input error /// InputError, /// /// Database error /// DBError, /// /// User is not allowed to do this /// PermissionError, /// /// Bad login/password /// LoginError, /// /// Ressource not found /// NotFound, /// /// Not handled error /// InternalError } }