10 lines
209 B
C#
10 lines
209 B
C#
using Godot.Collections;
|
|
|
|
namespace Learn.Models;
|
|
|
|
public class Item
|
|
{
|
|
public Dictionary<string, string> MainInfo { get; set; } = new();
|
|
|
|
public Dictionary<string, string> Info { get; set; } = new();
|
|
} |