16 lines
262 B
C#
16 lines
262 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Blueprint.Service.External.Clients.Adapters
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum StatusEnum
|
|
{
|
|
|
|
Active = 0,
|
|
|
|
Inactive = 1,
|
|
|
|
Deleted = 2
|
|
}
|
|
}
|