mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
11 lines
243 B
C#
11 lines
243 B
C#
namespace SPT.SinglePlayer.Models.RaidFix
|
|
{
|
|
public class SPTInsuredItemClass
|
|
{
|
|
public string id;
|
|
public float? durability = null;
|
|
public float? maxDurability = null;
|
|
public byte? hits = null;
|
|
}
|
|
}
|