31 lines
699 B
C#
31 lines
699 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace sikFtpClient.Connection
|
|||
|
{
|
|||
|
class DiscElement
|
|||
|
{
|
|||
|
public string Type;
|
|||
|
public string Filename;
|
|||
|
public string Filepath;
|
|||
|
public int Filesize;
|
|||
|
public string Fileext;
|
|||
|
|
|||
|
public DiscElement()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public DiscElement(string Type, string Filename, string Filepath, int Filesize, string Fileext)
|
|||
|
{
|
|||
|
this.Type = Type;
|
|||
|
this.Filename = Filename;
|
|||
|
this.Filepath = Filepath;
|
|||
|
this.Filesize = Filesize;
|
|||
|
this.Fileext = Fileext;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|