22 lines
505 B
C#
22 lines
505 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DirectoryCreator.Models
|
|||
|
{
|
|||
|
public class FolderConfig
|
|||
|
{
|
|||
|
public string Description { get; set; }
|
|||
|
public string BasePath { get; set; }
|
|||
|
public List<FolderStructure> FolderStructures { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class FolderStructure
|
|||
|
{
|
|||
|
public string BasePath { get; set; }
|
|||
|
public List<string> Subfolders { get; set; }
|
|||
|
}
|
|||
|
}
|