GrasscutterCommandGenerator/Source/GrasscutterTools/Models/GameItem.cs
筱傑 a055dc5299 Framework changed to WPF
Only the basic window frame is implemented.
Adjusted the structure of resource files.
2022-09-29 21:56:43 +08:00

17 lines
303 B
C#

namespace GrasscutterTools.Models
{
public class GameItem
{
public int Id { get; set; }
public string Name { get; set; }
public string Category { get; set; }
public override string ToString()
{
return $"{Id} : {Name}";
}
}
}