18 lines
433 B
C#
18 lines
433 B
C#
using Newtonsoft.Json.Converters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MegaRobo.C00225155.Entities.ToWeb.DoorStatus
|
|
{
|
|
public class Request
|
|
{
|
|
//[JsonConverter(typeof(StringEnumConverter))]
|
|
//public DoorNames DoorName { get; set; }
|
|
public int Status { get; set; }
|
|
}
|
|
}
|