updated json serilizer to return defaults

use enum text instead of number
This commit is contained in:
kay.one 2013-05-05 18:16:38 -07:00
commit 40f384968a
7 changed files with 31 additions and 34 deletions

View file

@ -17,9 +17,9 @@ namespace NzbDrone.Core.Datastore.Events
public enum RepositoryAction
{
Created,
Updated,
Deleted
Created = 1,
Updated = 2,
Deleted = 3
}
}