17 lines
321 B
C#
17 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GameData
|
|
{
|
|
public class ApiSettings
|
|
{
|
|
public string BaseUrl => "https://directus.straso.com/";
|
|
public string ApiToken => "9wIqngBjwR_l2f89D0EEAN1ldrcXUl6c";
|
|
|
|
|
|
}
|
|
}
|