mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
15 lines
378 B
C#
15 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.VS.Package {
|
|
public class ProfilePresets : Dictionary<string, string> {
|
|
public ProfilePresets() {
|
|
Add("ISO", "ISO Image");
|
|
Add("USB", "USB Bootable Drive");
|
|
Add("PXE", "PXE Network Boot");
|
|
Add("VMware", "VMware");
|
|
}
|
|
}
|
|
}
|