Move the Item data models into their own folder for better organization

This commit is contained in:
Oliver-Akins 2024-01-07 11:57:17 -07:00
parent 703aca9eef
commit 9522e28f4b
3 changed files with 2 additions and 2 deletions

View file

@ -1,16 +0,0 @@
export class CommonItemData extends foundry.abstract.DataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
name: new fields.StringField({
initial: ``,
blank: true,
trim: true,
}),
cost: new fields.NumberField({
initial: null,
nullable: true,
}),
};
};
};