26 lines
451 B
C#
26 lines
451 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace DearFTP.Configurations
|
|
{
|
|
class Share
|
|
{
|
|
[YamlIgnore]
|
|
public string Name { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
public string Group { get; set; }
|
|
|
|
public Share()
|
|
{
|
|
|
|
}
|
|
|
|
public Share(string name, string path, string group)
|
|
{
|
|
Name = name;
|
|
Path = path;
|
|
Group = group;
|
|
}
|
|
}
|
|
}
|