mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-12 17:30:43 -05:00
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
8 lines
200 B
C#
8 lines
200 B
C#
namespace LootDumpProcessor.Model.Processing;
|
|
|
|
public class CaliberTemplateCount
|
|
{
|
|
public string Caliber { get; set; }
|
|
public string Template { get; set; }
|
|
public int Count { get; set; }
|
|
} |