mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
13 lines
537 B
C#
13 lines
537 B
C#
namespace ArkData
|
|
{
|
|
public static class DataFileDetails
|
|
{
|
|
public static string PlayerFilePrefix { get; set; } = string.Empty;
|
|
public static string PlayerFileSuffix { get; set; } = string.Empty;
|
|
public static string PlayerFileExtension { get; set; } = ".arkprofile";
|
|
|
|
public static string TribeFilePrefix { get; set; } = string.Empty;
|
|
public static string TribeFileSuffix { get; set; } = string.Empty;
|
|
public static string TribeFileExtension { get; set; } = ".arktribe";
|
|
}
|
|
}
|