/* tslint:disable */ import {EntityField, StoreNode} from "../"; export interface Ligne { id?: number; } export interface LigneNode extends StoreNode { id: EntityField; } export const LigneEntity = { name: "ligne", fields: { id: { type: "field" as "field", domain: {}, isRequired: true, name: "id", translationKey: "ligne.id" } } };