Skip to content

Commit

Permalink
Add TMO enums
Browse files Browse the repository at this point in the history
  • Loading branch information
notatiyyah committed Aug 14, 2024
1 parent 6676ee4 commit 5866c9a
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 5866c9a

Please sign in to comment.