using System.Text.Json.Serialization;
using DataCheck;
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.SystemController;
public class LogRequest
{
///
/// log类型
///
[JsonPropertyName("logType")]
[DataRules]
public string? LogType { get; set; }
///
/// log文件名
///
[JsonPropertyName("logFileName")]
[DataRules]
public string? LogFileName { get; set; }
}