5 lines
105 B
C#
5 lines
105 B
C#
namespace RPG.GameCore.Excel;
|
|
public abstract class ExcelRow
|
|
{
|
|
public abstract uint Id { get; }
|
|
}
|