[RTL]
[reactos.git] / reactos / tools / sysgen / RosFramework / Interfaces / IRBuildInstallable.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace SysGen.RBuild.Framework
6 {
7 public interface IRBuildInstallable
8 {
9 string InstallBase { get; set; }
10
11 RBuildInstallFolder InstallFolder { get; set; }
12 }
13 }