import BaseCurdEntry from './BaseCurdEntry' import tagPurchaseStateApi from '@@/api/TagPurchaseStateApi' export default class TagPurchaseState extends BaseCurdEntry { id name constructor (id, name) { super() this.id = id this.name = name } static get $$name () { return 'TagPurchaseState' } static get $$api () { return tagPurchaseStateApi } }