13 lines
243 B
C#
13 lines
243 B
C#
|
|
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;
|
|
}
|
|
}
|