---@class PhotoShareDTO
---@field id number
---@field owner_identifier string
---@field url string
---@field location string
---@field created_at number
---@field new_photo_id number
---@field target_identifier string
---@param photo PhotoShareDTO - The shared photo details
AddEventHandler("no-camera:gallery:photo:shared", function(photo)
print(("Photo %d shared with: %s by: %s"):format(photo.id, photo.target_identifier, photo.owner_identifier))
end)