14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
|
import { member } from "../entity/member";
|
||
|
import { protocolAgenda } from "../entity/protocolAgenda";
|
||
|
import { protocolDecision } from "../entity/protocolDecision";
|
||
|
import { protocolVoting } from "../entity/protocolVoting";
|
||
|
|
||
|
export const memberlistDemoData: { member: Array<Partial<member>> } = {
|
||
|
member: [
|
||
|
{
|
||
|
firstname: "Julian",
|
||
|
lastname: "Krauser",
|
||
|
},
|
||
|
]
|
||
|
}
|