Files
WMS-Api/src/WMS.Web.Domain/Options/OpsOptions.cs
18942506660 ec755cb92e 对接老ops
2023-11-07 17:07:32 +08:00

17 lines
335 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Options
{
/// <summary>
/// 老ops对接
/// </summary>
public class OpsOptions
{
public string Url { get; set; }
public string UserName { get; set; }
public string PassWord { get; set; }
}
}