vassago/Shared.cs

14 lines
296 B
C#
Raw Permalink Normal View History

2023-06-01 00:03:23 -04:00
namespace vassago;
2021-11-30 21:39:43 -05:00
using System;
2023-06-01 00:03:23 -04:00
using System.Net.Http;
using vassago.Models;
2021-11-30 21:39:43 -05:00
2023-06-01 00:03:23 -04:00
public static class Shared
2021-11-30 21:39:43 -05:00
{
2023-06-01 00:03:23 -04:00
public static Random r = new Random();
public static string DBConnectionString { get; set; }
public static HttpClient HttpClient { get; internal set; } = new HttpClient();
}