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