2025-01-11 10:52:23 +03:00
|
|
|
namespace LootDumpProcessor.Model.Input;
|
2023-08-12 19:08:38 +01:00
|
|
|
|
2025-01-11 12:15:01 +03:00
|
|
|
public readonly record struct Data(
|
|
|
|
string ServerId,
|
|
|
|
ServerSettings ServerSettings,
|
|
|
|
object Profile,
|
|
|
|
LocationLoot LocationLoot
|
|
|
|
);
|