You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
579 B
21 lines
579 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity
|
|
{
|
|
public class KODFolder
|
|
{
|
|
public string URL { get; set; }
|
|
public string NAME { get; set; }
|
|
public string PATH { get; set; }
|
|
public string USER { get; set; }
|
|
public string PWD { get; set; }
|
|
public string General { get; set; }
|
|
public string OP { get; set; }
|
|
public string Cutters { get; set; }
|
|
public string SOP { get; set; }
|
|
public string SIP { get; set; }
|
|
}
|
|
}
|