ace/Source/ACE.Database/Models/World/TreasureGemCount.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

17 lines
311 B
C#

using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
public partial class TreasureGemCount
{
public uint Id { get; set; }
public byte GemCode { get; set; }
public int Tier { get; set; }
public int Count { get; set; }
public float Chance { get; set; }
}