Skip to content

Commit

Permalink
#1179 changed numeration
Browse files Browse the repository at this point in the history
  • Loading branch information
nivasy committed Aug 22, 2023
1 parent 321741d commit a9aa3f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OutOfSchool/OutOfSchool.WebApi/Enums/AccountStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace OutOfSchool.WebApi.Enums;
[JsonConverter(typeof(StringEnumConverter))]
public enum AccountStatus
{
NeverLogged = 0,
Accepted = 10,
Blocked = 20,
NeverLogged = 10,
Accepted = 20,
Blocked = 30,
}

0 comments on commit a9aa3f4

Please sign in to comment.