Skip to content

Commit

Permalink
Merge pull request #7 from LBHackney-IT/update-enums
Browse files Browse the repository at this point in the history
Add TMO enums
  • Loading branch information
notatiyyah authored Aug 15, 2024
2 parents 6676ee4 + 5866c9a commit c3be927
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Hackney.Shared.PatchesAndAreas/Domain/Enums.cs
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Serialization;
using System.Threading.Tasks;

namespace Hackney.Shared.PatchesAndAreas.Domain
{
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum PatchType
{
patch,
area
area,
tmoPatch
}

[JsonConverter(typeof(JsonStringEnumConverter))]
public enum ResponsibleType
{
HousingOfficer,
HousingAreaManager
HousingAreaManager,
TMO,
TmoManager
}
}

0 comments on commit c3be927

Please sign in to comment.