9 lines
256 B
C#
9 lines
256 B
C#
namespace Oqtane.Shared {
|
|
public class Runtimes {
|
|
public const string Server = "Server";
|
|
public const string WebAssembly = "WebAssembly";
|
|
public const string Auto = "Auto";
|
|
public const string Hybrid = "Hybrid";
|
|
}
|
|
}
|