using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UIControl
{
public partial class Unloader
{
public class CPortData
{
///
/// sid
///
public string sid { get; set; }
///
/// 현재진행된 수량
///
public int qty { get; set; }
public string towername { get; set; }
///
/// 전체기준수량
///
public int kpc { get; set; }
public CPortData(string sid, int qty, int kpc,string tower_)
{
this.sid = sid;
this.qty = qty;
this.kpc = kpc;
this.Active = true;
this.towername = tower_;
}
public CPortData(string sid,string towr) : this(sid, 0, 0,towr) { }
public Boolean Active { get; set; }
}
}
}