mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
10 lines
205 B
C#
10 lines
205 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.VS.ProjectSystem
|
|
{
|
|
public interface IBootableProperties
|
|
{
|
|
Task<string> GetBinFileAsync();
|
|
Task<string> GetIsoFileAsync();
|
|
}
|
|
}
|