From 4aac3bb32eb132e089a778f9cfc0851067eb5341 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <170472707+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 15:25:08 +0000 Subject: [PATCH] [skip CI] CI/CD: format code --- Fuyu.Backend.BSG/Models/Accounts/EftProfile.cs | 8 ++++---- Fuyu.Backend.BSG/Models/Accounts/WipeProfile.cs | 4 ++-- Fuyu.Backend.BSG/Models/Bots/BotCondition.cs | 6 +++--- Fuyu.Backend.BSG/Models/Common/CurrentMaximum.cs | 4 ++-- Fuyu.Backend.BSG/Models/Items/ItemFaceShieldComponent.cs | 4 ++-- Fuyu.Backend.BSG/Models/Items/ItemLockableComponent.cs | 2 +- Fuyu.Backend.BSG/Models/Items/ItemMapComponent.cs | 2 +- Fuyu.Backend.BSG/Models/Items/ItemRecodableComponent.cs | 2 +- Fuyu.Backend.BSG/Models/Items/ItemRepairKitComponent.cs | 2 +- Fuyu.Backend.BSG/Models/Items/ItemSideEffectComponent.cs | 2 +- Fuyu.Backend.BSG/Models/Profiles/Health/BodyPart.cs | 2 +- .../Models/Profiles/Hideout/HideoutAreaSlot.cs | 2 +- Fuyu.Backend.BSG/Models/Profiles/Stats/Counter.cs | 2 +- Fuyu.Backend.BSG/Models/Profiles/StatsInfo.cs | 2 +- Fuyu.Backend.BSG/Models/Profiles/UnlockedInfo.cs | 2 +- .../Models/Requests/GameBotGenerateRequest.cs | 2 +- .../Models/Requests/GameProfileNicknameValidate.cs | 2 +- .../Models/Responses/AchievementStatisticResponse.cs | 2 +- Fuyu.Backend.BSG/Models/Responses/GameLogoutResponse.cs | 2 +- .../Models/Responses/GameProfileCreateResponse.cs | 2 +- .../Responses/GameProfileNicknameValidateResponse.cs | 2 +- Fuyu.Backend.BSG/Models/Responses/GameStartResponse.cs | 2 +- Fuyu.Backend.BSG/Models/Responses/MenuLocaleResponse.cs | 2 +- .../Models/Responses/ProfileSelectResponse.cs | 2 +- .../Models/Responses/RepeatableQuestsResponse.cs | 2 +- 25 files changed, 33 insertions(+), 33 deletions(-) diff --git a/Fuyu.Backend.BSG/Models/Accounts/EftProfile.cs b/Fuyu.Backend.BSG/Models/Accounts/EftProfile.cs index e8dba211..1f221776 100644 --- a/Fuyu.Backend.BSG/Models/Accounts/EftProfile.cs +++ b/Fuyu.Backend.BSG/Models/Accounts/EftProfile.cs @@ -10,13 +10,13 @@ public class EftProfile [DataMember] public Profile Pmc { get; set; } - [DataMember] + [DataMember] public Profile Savage { get; set; } - [DataMember] + [DataMember] public CustomizationStorageEntry[] Customization { get; set; } - [DataMember] + [DataMember] public bool ShouldWipe { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Accounts/WipeProfile.cs b/Fuyu.Backend.BSG/Models/Accounts/WipeProfile.cs index f6df50bb..776ef385 100644 --- a/Fuyu.Backend.BSG/Models/Accounts/WipeProfile.cs +++ b/Fuyu.Backend.BSG/Models/Accounts/WipeProfile.cs @@ -10,7 +10,7 @@ public class WipeProfile [DataMember] public Profile Profile { get; set; } - [DataMember] + [DataMember] public CustomizationStorageEntry[] Customization { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Bots/BotCondition.cs b/Fuyu.Backend.BSG/Models/Bots/BotCondition.cs index fd384d77..1e31c62d 100644 --- a/Fuyu.Backend.BSG/Models/Bots/BotCondition.cs +++ b/Fuyu.Backend.BSG/Models/Bots/BotCondition.cs @@ -10,11 +10,11 @@ public class BotCondition [Newtonsoft.Json.JsonConverter(typeof(StringEnumConverter))] public EBotRole Role { get; set; } - [DataMember] + [DataMember] public int Limit { get; set; } - [DataMember] + [DataMember] [Newtonsoft.Json.JsonConverter(typeof(StringEnumConverter))] public EBotDifficulty Difficulty { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Common/CurrentMaximum.cs b/Fuyu.Backend.BSG/Models/Common/CurrentMaximum.cs index 430732ee..a88de8a2 100644 --- a/Fuyu.Backend.BSG/Models/Common/CurrentMaximum.cs +++ b/Fuyu.Backend.BSG/Models/Common/CurrentMaximum.cs @@ -8,7 +8,7 @@ public class CurrentMaximum [DataMember] public T Current { get; set; } - [DataMember] + [DataMember] public T Maximum { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Items/ItemFaceShieldComponent.cs b/Fuyu.Backend.BSG/Models/Items/ItemFaceShieldComponent.cs index 42a132f8..931831aa 100644 --- a/Fuyu.Backend.BSG/Models/Items/ItemFaceShieldComponent.cs +++ b/Fuyu.Backend.BSG/Models/Items/ItemFaceShieldComponent.cs @@ -8,7 +8,7 @@ public class ItemFaceShieldComponent [DataMember] public byte Hits { get; set; } - [DataMember] + [DataMember] public byte HitSeed { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Items/ItemLockableComponent.cs b/Fuyu.Backend.BSG/Models/Items/ItemLockableComponent.cs index e56709ac..da8c7aad 100644 --- a/Fuyu.Backend.BSG/Models/Items/ItemLockableComponent.cs +++ b/Fuyu.Backend.BSG/Models/Items/ItemLockableComponent.cs @@ -10,7 +10,7 @@ public class ItemLockableComponent : IItemComponent [DataMember] public bool Locked { get; set; } - public static object CreateComponent(JObject templateProperties) + public static object CreateComponent(JObject templateProperties) { if (!templateProperties.ContainsKey("isSecured") || !templateProperties.Value("isSecured")) diff --git a/Fuyu.Backend.BSG/Models/Items/ItemMapComponent.cs b/Fuyu.Backend.BSG/Models/Items/ItemMapComponent.cs index 36caec2b..c9682cdd 100644 --- a/Fuyu.Backend.BSG/Models/Items/ItemMapComponent.cs +++ b/Fuyu.Backend.BSG/Models/Items/ItemMapComponent.cs @@ -11,7 +11,7 @@ public class ItemMapComponent : IItemComponent [DataMember] public List Markers { get; set; } - public static object CreateComponent(JObject templateProperties) + public static object CreateComponent(JObject templateProperties) { if (!templateProperties.ContainsKey("MaxMarkersCount")) { diff --git a/Fuyu.Backend.BSG/Models/Items/ItemRecodableComponent.cs b/Fuyu.Backend.BSG/Models/Items/ItemRecodableComponent.cs index 13267e8e..e96c7acb 100644 --- a/Fuyu.Backend.BSG/Models/Items/ItemRecodableComponent.cs +++ b/Fuyu.Backend.BSG/Models/Items/ItemRecodableComponent.cs @@ -10,7 +10,7 @@ public class ItemRecodableComponent : IItemComponent [DataMember] public bool IsEncoded { get; set; } - public static object CreateComponent(JObject templateProperties) + public static object CreateComponent(JObject templateProperties) { if (!templateProperties.ContainsKey("IsEncoded")) { diff --git a/Fuyu.Backend.BSG/Models/Items/ItemRepairKitComponent.cs b/Fuyu.Backend.BSG/Models/Items/ItemRepairKitComponent.cs index 49f159f6..c8c62a78 100644 --- a/Fuyu.Backend.BSG/Models/Items/ItemRepairKitComponent.cs +++ b/Fuyu.Backend.BSG/Models/Items/ItemRepairKitComponent.cs @@ -10,7 +10,7 @@ public class ItemRepairKitComponent : IItemComponent [DataMember] public float Resource { get; set; } - public static object CreateComponent(JObject templateProperties) + public static object CreateComponent(JObject templateProperties) { if (!templateProperties.ContainsKey("MaxRepairResource")) { diff --git a/Fuyu.Backend.BSG/Models/Items/ItemSideEffectComponent.cs b/Fuyu.Backend.BSG/Models/Items/ItemSideEffectComponent.cs index 83d3d677..4b45cbf1 100644 --- a/Fuyu.Backend.BSG/Models/Items/ItemSideEffectComponent.cs +++ b/Fuyu.Backend.BSG/Models/Items/ItemSideEffectComponent.cs @@ -10,7 +10,7 @@ public class ItemSideEffectComponent : IItemComponent [DataMember] public float Value { get; set; } - public static object CreateComponent(JObject templateProperties) + public static object CreateComponent(JObject templateProperties) { if (!templateProperties.ContainsKey("MaxResource")) { diff --git a/Fuyu.Backend.BSG/Models/Profiles/Health/BodyPart.cs b/Fuyu.Backend.BSG/Models/Profiles/Health/BodyPart.cs index 629a19ae..9ad3f8b5 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/Health/BodyPart.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/Health/BodyPart.cs @@ -8,5 +8,5 @@ public class BodyPart { [DataMember] public CurrentMaximum Health { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Profiles/Hideout/HideoutAreaSlot.cs b/Fuyu.Backend.BSG/Models/Profiles/Hideout/HideoutAreaSlot.cs index 08dbe734..e4d985a9 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/Hideout/HideoutAreaSlot.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/Hideout/HideoutAreaSlot.cs @@ -8,5 +8,5 @@ public class HideoutAreaSlot // TODO: proper type [DataMember] public object item { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Profiles/Stats/Counter.cs b/Fuyu.Backend.BSG/Models/Profiles/Stats/Counter.cs index 7c8d3d18..5f971f7e 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/Stats/Counter.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/Stats/Counter.cs @@ -8,5 +8,5 @@ public class Counter // TODO: proper type [DataMember] public object[] Items { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Profiles/StatsInfo.cs b/Fuyu.Backend.BSG/Models/Profiles/StatsInfo.cs index 452044fb..a26ed7e5 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/StatsInfo.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/StatsInfo.cs @@ -8,5 +8,5 @@ public class StatsInfo { [DataMember] public EftStats Eft { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Profiles/UnlockedInfo.cs b/Fuyu.Backend.BSG/Models/Profiles/UnlockedInfo.cs index f034dfdc..75221194 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/UnlockedInfo.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/UnlockedInfo.cs @@ -8,5 +8,5 @@ public class UnlockedInfo // TODO: proper type [DataMember] public object[] unlockedProductionRecipe { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Requests/GameBotGenerateRequest.cs b/Fuyu.Backend.BSG/Models/Requests/GameBotGenerateRequest.cs index e59d07ac..89067365 100644 --- a/Fuyu.Backend.BSG/Models/Requests/GameBotGenerateRequest.cs +++ b/Fuyu.Backend.BSG/Models/Requests/GameBotGenerateRequest.cs @@ -8,5 +8,5 @@ public class GameBotGenerateRequest { [DataMember] public BotCondition[] conditions { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Requests/GameProfileNicknameValidate.cs b/Fuyu.Backend.BSG/Models/Requests/GameProfileNicknameValidate.cs index 045435ed..394c8512 100644 --- a/Fuyu.Backend.BSG/Models/Requests/GameProfileNicknameValidate.cs +++ b/Fuyu.Backend.BSG/Models/Requests/GameProfileNicknameValidate.cs @@ -7,5 +7,5 @@ public class GameProfileNicknameValidateRequest { [DataMember] public string nickname { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/AchievementStatisticResponse.cs b/Fuyu.Backend.BSG/Models/Responses/AchievementStatisticResponse.cs index 25558cee..06ad5943 100644 --- a/Fuyu.Backend.BSG/Models/Responses/AchievementStatisticResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/AchievementStatisticResponse.cs @@ -8,5 +8,5 @@ public class AchievementStatisticResponse { [DataMember] public Dictionary elements { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/GameLogoutResponse.cs b/Fuyu.Backend.BSG/Models/Responses/GameLogoutResponse.cs index f8131732..1e70799e 100644 --- a/Fuyu.Backend.BSG/Models/Responses/GameLogoutResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/GameLogoutResponse.cs @@ -7,5 +7,5 @@ public class GameLogoutResponse { [DataMember] public string status { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/GameProfileCreateResponse.cs b/Fuyu.Backend.BSG/Models/Responses/GameProfileCreateResponse.cs index b2cc0f01..8e9872ed 100644 --- a/Fuyu.Backend.BSG/Models/Responses/GameProfileCreateResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/GameProfileCreateResponse.cs @@ -7,5 +7,5 @@ public class GameProfileCreateResponse { [DataMember] public string uid { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/GameProfileNicknameValidateResponse.cs b/Fuyu.Backend.BSG/Models/Responses/GameProfileNicknameValidateResponse.cs index 9c525421..35e151ef 100644 --- a/Fuyu.Backend.BSG/Models/Responses/GameProfileNicknameValidateResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/GameProfileNicknameValidateResponse.cs @@ -7,5 +7,5 @@ public class GameProfileNicknameValidateResponse { [DataMember] public string status { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/GameStartResponse.cs b/Fuyu.Backend.BSG/Models/Responses/GameStartResponse.cs index 8d5bf23f..92eb2417 100644 --- a/Fuyu.Backend.BSG/Models/Responses/GameStartResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/GameStartResponse.cs @@ -7,5 +7,5 @@ public class GameStartResponse { [DataMember] public double utc_time { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/MenuLocaleResponse.cs b/Fuyu.Backend.BSG/Models/Responses/MenuLocaleResponse.cs index 3b295a4b..4fad69a3 100644 --- a/Fuyu.Backend.BSG/Models/Responses/MenuLocaleResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/MenuLocaleResponse.cs @@ -8,5 +8,5 @@ public class MenuLocaleResponse { [DataMember] public Dictionary menu { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/ProfileSelectResponse.cs b/Fuyu.Backend.BSG/Models/Responses/ProfileSelectResponse.cs index 46c7a26d..6f47efe9 100644 --- a/Fuyu.Backend.BSG/Models/Responses/ProfileSelectResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/ProfileSelectResponse.cs @@ -7,5 +7,5 @@ public class ProfileSelectResponse { [DataMember] public string status { get; set; } - } + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Responses/RepeatableQuestsResponse.cs b/Fuyu.Backend.BSG/Models/Responses/RepeatableQuestsResponse.cs index 60d0d5ee..24c5d853 100644 --- a/Fuyu.Backend.BSG/Models/Responses/RepeatableQuestsResponse.cs +++ b/Fuyu.Backend.BSG/Models/Responses/RepeatableQuestsResponse.cs @@ -8,5 +8,5 @@ public class RepeatableQuestsResponse // TODO: proper type [DataMember] public object[] squad { get; set; } - } + } } \ No newline at end of file