DSIK_FILEZILLA/sikFtpClient/Connection/DiscElement.cs

31 lines
699 B
C#
Raw Permalink Normal View History

2019-01-21 20:06:33 +01:00
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;
}
}
}