Resolves Warning CS0109

A class declaration included the new keyword even though the declaration does not override an existing declaration in a base class. The new keyword can be deleted.
This commit is contained in:
Refringe 2024-11-14 10:01:55 -05:00
parent f927a64a13
commit b3c9f5bdd4
Signed by untrusted user: Refringe
GPG Key ID: 7715B85B4A6306ED

View File

@ -69,7 +69,7 @@ namespace Common.Models.Output
public Dictionary<string, int> TacticalVest { get; set; }
public Dictionary<string, int> Pockets { get; set; }
public Dictionary<string, int> Backpack { get; set; }
public new Dictionary<string, int> SecuredContainer { get; set; }
public new Dictionary<string, int> SpecialLoot { get; set; }
public Dictionary<string, int> SecuredContainer { get; set; }
public Dictionary<string, int> SpecialLoot { get; set; }
}
}