bebo231312312321

Untitled

Aug 28th, 2025
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Структура за бенефициенти към проект
  2. beneficiaries: {
  3.   totalCount: 0,
  4.   totalAmountDistributed: 0,
  5.   currency: 'BGN',
  6.  
  7.   list: [
  8.     {
  9.       id: 'ben_001',
  10.       firstName: 'Мария',
  11.       lastName: 'Петрова',
  12.       email: '[email protected]',
  13.       profileImage: '/images/beneficiaries/maria_petrova.jpg',
  14.       amountReceived: 1500.00,
  15.       dateAdded: '2024-01-15',
  16.       status: 'active', // active, completed
  17.       phone: '+359 888 123 456',
  18.       age: 74,
  19.       location: 'София',
  20.       notes: 'Получи помощ за медицински разходи'
  21.     },
  22.     {
  23.       id: 'ben_002',
  24.       firstName: 'Иван',
  25.       lastName: 'Георгиев',
  26.       email: '[email protected]',
  27.       profileImage: '/images/beneficiaries/ivan_georgiev.jpg',
  28.       amountReceived: 800.00,
  29.       dateAdded: '2024-02-01',
  30.       status: 'completed',
  31.       phone: '+359 888 234 567',
  32.       age: 68,
  33.       location: 'Пловдив',
  34.       notes: 'Помощ за домашни нужди'
  35.     }
  36.   ]
  37. }
Advertisement
Add Comment
Please, Sign In to add comment