Files
2017-12-21 08:30:49 +01:00

17 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS_Client.Browser_Tools.SubModels
{
public class Drive
{
public String Name { get; set; }
public int Type { get; set; }
public String Letter { get; set; }
public String BasePath { get; set; }
}
}