jspurefix
Version:
pure node js fix engine
9 lines (7 loc) • 314 B
text/typescript
import { SimpleFieldDefinition } from './simple-field-definition'
import { Dictionary } from '../../collections'
export class CategorySimpleSet {
public readonly simple: Dictionary<SimpleFieldDefinition> = new Dictionary<SimpleFieldDefinition>()
constructor (public readonly category: string) {
}
}