Cosmos/source/Cosmos.VS.ProjectSystem/ProjectSystem/IBootableProperties.cs
2017-12-24 21:20:10 +00:00

10 lines
205 B
C#

using System.Threading.Tasks;
namespace Cosmos.VS.ProjectSystem
{
public interface IBootableProperties
{
Task<string> GetBinFileAsync();
Task<string> GetIsoFileAsync();
}
}