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