10 lines
235 B
C#
10 lines
235 B
C#
|
using TireTargets.Components.Layout;
|
|||
|
|
|||
|
namespace TireTargets.Components.CSharp
|
|||
|
{
|
|||
|
public class WebInfo
|
|||
|
{
|
|||
|
public static string BaseUrl = MainLayout.isDev ? "https://localhost:7219" : "INSERT REAL ADDRESS HERE";
|
|||
|
}
|
|||
|
}
|