17 lines
335 B
C#
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; }
|
|
}
|
|
}
|