提交修改

This commit is contained in:
hehaibing-1996
2024-11-12 13:33:40 +08:00
parent 6282ecc0c1
commit 7427b804f6
5 changed files with 103 additions and 1 deletions

View File

@ -0,0 +1,12 @@

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.SingleLight
{
public class TurnoffLightByAreaRequest : RequestBase
{
public string Area { get; set; } = string.Empty;
}
}